-
Notifications
You must be signed in to change notification settings - Fork 5
77 lines (67 loc) · 2.04 KB
/
release.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Publish Package to crates.io and npmjs
on:
release:
types: [published]
jobs:
kormir-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-10-24
components: clippy
target: wasm32-unknown-unknown
override: true
profile: minimal
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ runner.os }}-release-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
cargo-${{ runner.os }}-release-
cargo-${{ runner.os }}-
- name: Cargo Publish
run: cargo publish -p kormir
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
kormir-wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-10-24
components: clippy
target: wasm32-unknown-unknown
override: true
profile: minimal
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ runner.os }}-release-${{ hashFiles('**/Cargo.toml') }}
restore-keys: |
cargo-${{ runner.os }}-release-
cargo-${{ runner.os }}-
- uses: jetli/[email protected]
with:
version: 'v0.12.1'
- name: Build wasm
env:
RUSTUP_TOOLCHAIN: nightly-2023-10-24
run: wasm-pack build ./kormir-wasm --release --weak-refs --target web --scope benthecarman
- name: Publish wasm
run: wasm-pack publish --access public -t web
env:
RUSTUP_TOOLCHAIN: nightly-2023-10-24
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}