惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
IT之家
IT之家
博客园 - 叶小钗
雷峰网
雷峰网
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
Last Week in AI
Last Week in AI
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Set Up CI/CD for My React App in 5 Minutes — Here's the...
Sayista Yazd · 2026-05-27 · via DEV Community
Cover image for I Set Up CI/CD for My React App in 5 Minutes — Here's the Exact YML Config

Sayista Yazdani

I used to deploy my React apps manually like a caveman.

npm run build → drag dist/ somewhere → pray nothing breaks.

Then a senior dev looked at me and said: "Bhai, GitHub Actions free hai. Use kar le."

And that changed everything.

Now I just git push origin main and my site is live in 30 seconds. No kidding.

Let me show you the exact setup — no fluff, just copy-paste material.


Step 1: Push Your Code (Obvious, but still)

git add -A
git commit -m "feat: complete modern React conversion"
git push origin main

Enter fullscreen mode Exit fullscreen mode


Step 2: The Magic Folder

GitHub scans your repo for .github/workflows/. Anything ending in .yml inside this folder becomes an automation script.

That's it. No npm packages to install. No third-party dashboards. Just a folder and a file.


Step 3: The Complete YML File (Line-by-Line Breakdown)

# Your automation task ka naam — kuch bhi rakh lo
name: Deploy to GitHub Pages

# Trigger: kab chalu hona chahiye?
on:
  push:
    branches:
      - main  # jab bhi main branch pe push hoga, tab chalega

# Permissions: GitHub Pages pe deploy karne ke liye rights chahiye
permissions:
  contents: write

# Actual kaam — GitHub's cloud servers pe kya execute hoga
jobs:
  build-and-deploy:
    runs-on: ubuntu-latest  # GitHub free Linux server allot karta hai

    steps:
      # A: Push kiya hua code clone karo
      - name: Checkout Code
        uses: actions/checkout@v4

      # B: Node.js 20 setup karo
      - name: Set up Node.js
        uses: actions/setup-node@v4
        with:
          node-version: 20
          cache: 'npm'

      # C: Dependencies install karo (npm install se better, cleaner)
      - name: Install Dependencies
        run: npm ci

      # D: React app ko build karo — optimized dist/ folder banega
      - name: Build Application
        run: npm run build

      # E: dist/ folder ko automatically gh-pages branch pe upload kar do
      - name: Deploy to GitHub Pages
        uses: JamesIves/github-pages-deploy-action@v4
        with:
          folder: dist
          branch: gh-pages

Enter fullscreen mode Exit fullscreen mode


Step 4: Enable Permissions (One-Time Thing)

Your robot needs permission to write files. Go to:

Repository → Settings → Actions → General → Workflow permissions → Read and write permissions → Save


Step 5: Watch It Happen

  1. Go to the Actions tab in your repo
  2. Yellow spinning circle = build chalu hai
  3. Click karo → real-time logs dikhenge
  4. Green checkmark = done ✅
  5. Go to Settings → Pages → select gh-pages branch → your site is LIVE

Every future push → auto update in ~30 seconds.


My Take

I know CI/CD sounds scary. "DevOps wale cheezein" — but honestly, this is just a config file. That's it.

If you know how to write React, you already know enough to automate your deploys. GitHub is literally giving you free cloud servers to do the boring work.

Stop deploying manually. Your time is worth more than that.


Drop a ❤️ if this helped, or comment if you want me to explain any specific part in more detail!