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 d4d5007 commit 51d2878Copy full SHA for 51d2878
.github/workflows/docs.yaml
@@ -0,0 +1,23 @@
1
+name: Build and Deploy
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ build-and-deploy:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout 🛎️
11
+ uses: actions/[email protected]
12
+ with:
13
+ persist-credentials: false
14
+
15
+ - name: Install and Build 🔧
16
+ run: |
17
+ npm i && npm run docs
18
+ - name: Deploy 🚀
19
+ uses: JamesIves/[email protected]
20
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ BRANCH: gh-pages
23
+ FOLDER: docs
0 commit comments