We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3388d8 commit 33b7411Copy full SHA for 33b7411
.github/workflows/deploy.yml
@@ -5,6 +5,9 @@ on:
5
branches:
6
- main
7
8
+permissions:
9
+ contents: write
10
+
11
jobs:
12
build:
13
permissions:
@@ -28,8 +31,9 @@ jobs:
28
31
run: BUILD_COMMIT=${{ github.sha }} BASE_PATH=/cigale npm run build
29
32
30
33
- name: Deploy to GitHub Pages
- uses: peaceiris/actions-gh-pages@v4
34
+ uses: JamesIves/github-pages-deploy-action@v4
35
with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./public
- publish_branch: gh-pages
36
+ folder: public # The folder the action should deploy.
37
+ force: yes
38
+ clean: no
39
+ clean-exclude: _pullrequests/
0 commit comments