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 2aa7906 commit 082c951Copy full SHA for 082c951
.github/workflows/deploy-webgl-preview.yml
@@ -0,0 +1,23 @@
1
+name: Deploy WebGL Preview
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - "docs/**"
9
10
+jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v2
16
+ with:
17
+ persist-credentials: false
18
19
+ - name: Deploy
20
+ uses: JamesIves/github-pages-deploy-action@v4
21
22
+ branch: main
23
+ folder: docs
0 commit comments