We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4410389 commit ae9bc56Copy full SHA for ae9bc56
.github/workflows/deploy_site.yml
@@ -21,17 +21,11 @@ jobs:
21
working-directory: ${{github.workspace}}/docusaurus
22
# Build your program with the given configuration
23
run: yarn build
24
-
25
- - name: Identify to git
26
- run: |
27
- git config --local user.email "[email protected]"
28
- git config --local user.name "ZigRazor"
29
30
- - name: Deploy
31
- working-directory: ${{github.workspace}}/docusaurus
32
- env:
33
- GIT_USER: ZigRazor
34
- GIT_PASS: ${{ secrets.PERSONAL_TOKEN }}
35
- run: yarn run deploy
+
+ - name: Deploy to gh-pages
+ uses: peaceiris/actions-gh-pages@v3
+ with:
+ github_token: ${{ secrets.PERSONAL_TOKEN }}
+ publish_dir: ./docusaurus/build
36
37
0 commit comments