Skip to content

Commit 5af9773

Browse files
Update deploy.yml
1 parent 1ebbfc0 commit 5af9773

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/deploy.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,10 @@ jobs:
1919
- name: Build React App
2020
run: npm run build
2121

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-
2722
- name: Deploy to GitHub Pages
2823
uses: JamesIves/github-pages-deploy-action@v4
2924
with:
30-
branch: gh-pages # Deploy the fresh build to gh-pages branch
31-
folder: build # Deploy the built React app
25+
branch: gh-pages
26+
folder: build
27+
clean: true # Ensures old files are removed without deleting the branch
28+

0 commit comments

Comments
 (0)