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 fa43c59 commit 95bb7d7Copy full SHA for 95bb7d7
1 file changed
.github/workflows/pages.yml
@@ -0,0 +1,20 @@
1
+name: Update Github Pages
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
7
+jobs:
8
+ docs:
9
+ runs-on: ubuntu-22.04
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - name: Upload docs
13
+ run: |
14
+ git config --local user.email "action@github.com"
15
+ git config --local user.name "GitHub Action"
16
+ mv bindings/javascript/wasm/ docs/
17
+ touch docs/.nojekyll
18
+ git add --force docs/
19
+ git commit -m "chore: build pages"
20
+ git push --force origin HEAD:gh-pages
0 commit comments