We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ebbfc0 commit 5af9773Copy full SHA for 5af9773
.github/workflows/deploy.yml
@@ -19,13 +19,10 @@ jobs:
19
- name: Build React App
20
run: npm run build
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
-
27
- name: Deploy to GitHub Pages
28
uses: JamesIves/github-pages-deploy-action@v4
29
with:
30
- branch: gh-pages # Deploy the fresh build to gh-pages branch
31
- folder: build # Deploy the built React app
+ branch: gh-pages
+ folder: build
+ clean: true # Ensures old files are removed without deleting the branch
+
0 commit comments