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 8aa276d commit 9e2e07aCopy full SHA for 9e2e07a
.github/workflows/deploy.yaml
@@ -26,7 +26,9 @@ jobs:
26
- run: npm ci
27
- run: npm run build
28
- run: npm run build:docs
29
- - run: |
30
- git config user.name "GitHub Actions Bot"
31
- git config user.email "<>"
32
- - run: npx gh-pages -d build/docs/gatsby/public
+ - name: Deploy to GitHub Pages
+ uses: peaceiris/actions-gh-pages@v4
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
33
+ publish_dir: build/docs/gatsby/public
34
+ commit_message: "Deploy to GitHub Pages"
0 commit comments