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 a98a644 commit 7fb6399Copy full SHA for 7fb6399
.github/workflows/main.yml
@@ -71,3 +71,20 @@ jobs:
71
user_name: ${{ github.actor }}
72
user_email: ${{ github.actor }}@users.noreply.github.com
73
publish_branch: gh-pages
74
+
75
+ deploy-docs:
76
+ permissions:
77
+ contents: write
78
+ runs-on: ubuntu-latest
79
+ steps:
80
+ - name: Checkout
81
+ uses: actions/checkout@v3
82
+ - name: Deploy docs to gh-pages branch
83
+ uses: peaceiris/actions-gh-pages@v3
84
+ with:
85
+ github_token: ${{ secrets.GITHUB_TOKEN }}
86
+ publish_dir: ./site
87
+ keep_files: false
88
+ user_name: ${{ github.actor }}
89
+ user_email: ${{ github.actor }}@users.noreply.github.com
90
+ publish_branch: gh-pages
0 commit comments