Skip to content

Commit 1ebbfc0

Browse files
Update deploy.yml
1 parent cd92a80 commit 1ebbfc0

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/deploy.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Deploy React App to GitHub Pages
33
on:
44
push:
55
branches:
6-
- main
6+
- main # Trigger when changes are pushed to main
77

88
jobs:
99
build-and-deploy:
@@ -15,12 +15,17 @@ jobs:
1515

1616
- name: Install Dependencies
1717
run: npm install
18-
18+
1919
- name: Build React App
2020
run: npm run build
21-
21+
22+
- name: Delete Old gh-pages Branch
23+
run: |
24+
git fetch origin gh-pages || echo "gh-pages branch does not exist yet"
25+
git push origin --delete gh-pages || echo "No gh-pages branch to delete"
26+
2227
- name: Deploy to GitHub Pages
2328
uses: JamesIves/github-pages-deploy-action@v4
2429
with:
25-
branch: gh-pages # Will create gh-pages if it doesn’t exist
26-
folder: build # The directory to deploy
30+
branch: gh-pages # Deploy the fresh build to gh-pages branch
31+
folder: build # Deploy the built React app

0 commit comments

Comments
 (0)