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 f53d6b5 commit 4405d74Copy full SHA for 4405d74
.github/workflows/ci.yml
@@ -49,3 +49,25 @@ jobs:
49
env:
50
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
52
+ deploy:
53
+ environment:
54
+ name: github-pages
55
+ url: ${{ steps.deployment.outputs.page_url }}
56
+ runs-on: ubuntu-latest
57
+ steps:
58
+ - name: Checkout
59
+ uses: actions/checkout@v4
60
+ - name: 'Install depependencies'
61
+ run: npm install --force
62
+ - name: Build docs
63
+ run: npm run build_docs
64
+ - name: Setup Pages
65
+ uses: actions/configure-pages@v5
66
+ - name: Upload artifact
67
+ uses: actions/upload-pages-artifact@v3
68
+ with:
69
+ # Upload entire repository
70
+ path: './docs'
71
+ - name: Deploy to GitHub Pages
72
+ id: deployment
73
+ uses: actions/deploy-pages@v4
.github/workflows/static.yml
0 commit comments