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 0c36b0f commit ce2e604Copy full SHA for ce2e604
.github/workflows/deploy-docs.yml
@@ -0,0 +1,30 @@
1
+# Github workflow to deploy the documentation to Github Pages
2
+
3
+name: Deploy docs
4
5
+on:
6
+ push:
7
+ branches:
8
+ - source
9
10
+jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-node@v1
16
17
+ - name: Install dependencies
18
+ run: npm ci
19
20
+ - name: Build docs bundle
21
+ run: npm run build
22
23
+ - name: Commit changes
24
+ uses: EndBug/add-and-commit@master
25
+ with:
26
+ branch: "master"
27
+ add: "docs/.vuepress/dist"
28
+ message: "Deploy docs"
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments