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 c38c915 commit 611cd49Copy full SHA for 611cd49
.github/workflows/deploy_skill_tree.yml
@@ -0,0 +1,26 @@
1
+name: github pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-18.04
11
+ steps:
12
+ - uses: actions/checkout@v2
13
14
+ - name: Setup mdBook
15
+ uses: peaceiris/actions-mdbook@v1
16
+ with:
17
+ mdbook-version: '0.4.1'
18
+ # mdbook-version: 'latest'
19
20
+ - run: mdbook build
21
22
+ - name: Deploy
23
+ uses: peaceiris/actions-gh-pages@v3
24
25
+ github_token: ${{ secrets.GITHUB_TOKEN }}
26
+ publish_dir: ./book
0 commit comments