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 f321ab5 commit 1a31d33Copy full SHA for 1a31d33
1 file changed
.github/workflows/docs.yml
@@ -21,7 +21,14 @@ jobs:
21
- name: Install packages
22
run: yarn install
23
24
- - name: Deploy docs
25
- run: yarn deploy
+ - name: Build docs
+ run: yarn build:docs
26
+ env:
27
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28
+
29
+ - name: Deploy
30
+ run: |
31
+ git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
32
+ npx gh-pages -d build -u "github-actions-bot <support+actions@github.com>"
33
env:
34
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments