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 a71a9c0 commit 6b6c534Copy full SHA for 6b6c534
.github/workflows/deploy.yml
@@ -0,0 +1,28 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ with:
14
+ fetch-depth: 0
15
+ - uses: actions/setup-node@v3
16
17
+ node-version: 16
18
+ cache: yarn
19
+ - run: yarn install --frozen-lockfile
20
21
+ - name: Build
22
+ run: yarn docs:build
23
24
+ - name: Deploy
25
+ uses: peaceiris/actions-gh-pages@v3
26
27
+ github_token: ${{ secrets.GITHUB_TOKEN }}
28
+ publish_dir: docs/.vitepress/dist
0 commit comments