forked from MutinyWallet/mutiny-node
-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (43 loc) · 1.27 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
name: Publish Package to npmjs
on:
push:
tags:
- '*'
jobs:
mutiny-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-2024-09-19
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.13.1'
- name: Build wasm
env:
RUSTUP_TOOLCHAIN: nightly-2024-09-19
run: wasm-pack build ./mutiny-wasm --release --weak-refs --target web --scope nervina-labs
- name: Publish wasm
run: wasm-pack publish --access public -t web
env:
RUSTUP_TOOLCHAIN: nightly-2024-09-19
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}