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 e2f80bc commit 7cf3a1dCopy full SHA for 7cf3a1d
.github/workflows/gh-pages.yml
@@ -0,0 +1,19 @@
1
+name: github pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master # default branch
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-18.04
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - run: npm install
14
+ - run: npm run build:site
15
+ - name: Deploy
16
+ uses: peaceiris/actions-gh-pages@v3
17
+ with:
18
+ github_token: ${{ secrets.GITHUB_TOKEN }}
19
+ publish_dir: ./doc-site
0 commit comments