-
Notifications
You must be signed in to change notification settings - Fork 52
42 lines (40 loc) · 1.05 KB
/
playground.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Playground Deployment
on:
push:
branches:
- master
jobs:
playground:
name: Web Demo
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: yarn
cache-dependency-path: web/yarn.lock
- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.66.0
override: true
- name: Install wasm-pack
uses: actions-rs/cargo@v1
with:
command: install
args: wasm-pack --locked
- name: Install wasm-bindgen-cli
uses: actions-rs/cargo@v1
with:
command: install
args: --version 0.2.80 -f wasm-bindgen-cli --locked
- run: yarn
working-directory: ./web
- run: yarn build
working-directory: ./web
- name: deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: playground
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./web/dist