We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c1f2ea commit 0e32164Copy full SHA for 0e32164
.github/workflows/deploy.yml
@@ -19,8 +19,9 @@ jobs:
19
uses: actions/upload-artifact@v4
20
with:
21
name: public
22
- path: ./public # This is your static site folder
+ path: ./public
23
retention-days: 1
24
+
25
deploy:
26
runs-on: ubuntu-latest
27
needs: build
@@ -33,9 +34,11 @@ jobs:
33
34
35
36
path: ./public
37
38
- name: Deploy
39
uses: peaceiris/actions-gh-pages@v4
40
if: github.ref == 'refs/heads/master'
41
42
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./public
43
+ publish_dir: ./public
44
+ force_orphan: true
0 commit comments