-
Notifications
You must be signed in to change notification settings - Fork 245
60 lines (55 loc) · 1.55 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Build playground
on:
push:
branches: [main]
pull_request:
merge_group:
# Cancel any in-flight jobs for the same PR/branch so there's only one active
# at a time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
build:
name: Build playground deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: bytecodealliance/wasmtime/.github/actions/[email protected]
- uses: cargo-bins/[email protected]
- run: cargo binstall cargo-component -y
- run: rustup component add rustfmt # needed for cargo-component, apparently?
- run: rustup target add wasm32-wasip1
- run: npm ci
working-directory: playground
- run: npm run build
working-directory: playground
# also prepare to deploy GH pages on main
- if: github.ref == 'refs/heads/main'
uses: actions/configure-pages@v5
- if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: "./playground/dist"
deploy:
name: Deploy playground
if: github.ref == 'refs/heads/main'
needs: build
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4