File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Deploy React App to GitHub Pages
3
3
on :
4
4
push :
5
5
branches :
6
- - main
6
+ - main # Trigger when changes are pushed to main
7
7
8
8
jobs :
9
9
build-and-deploy :
@@ -15,12 +15,17 @@ jobs:
15
15
16
16
- name : Install Dependencies
17
17
run : npm install
18
-
18
+
19
19
- name : Build React App
20
20
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
+
22
27
- name : Deploy to GitHub Pages
23
28
uses : JamesIves/github-pages-deploy-action@v4
24
29
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
You can’t perform that action at this time.
0 commit comments