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 f45662a commit 6483d8fCopy full SHA for 6483d8f
.github/workflows/docs.yml
@@ -27,9 +27,22 @@ jobs:
27
run: |
28
npm run build
29
npm run docs
30
+ Deploy:
31
+ needs: Documentation
32
- - name: Deploy
- uses: github/pages-deploy-action@v2
33
+ permissions:
34
+ pages: write
35
+ id-token: write
36
+
37
+ environment:
38
+ name: github-pages
39
+ url: ${{ steps.deployment.outputs.page_url }}
40
41
+ runs-on: ubuntu-latest
42
43
+ steps:
44
+ - name: Deploy to GitHub Pages
45
+ id: deployment
46
+ uses: actions/deploy-pages@v4
47
with:
- branch: gh-pages
- folder: dist/docs
48
+ path: dist/docs
0 commit comments