v0.6.3 #107
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Package to npmjs | |
on: | |
release: | |
types: [published] | |
jobs: | |
mutiny-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 mutiny-core | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
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-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 ./mutiny-wasm --release --weak-refs --target web --scope mutinywallet | |
- name: Publish wasm | |
run: wasm-pack publish --access public -t web | |
env: | |
RUSTUP_TOOLCHAIN: nightly-2023-10-24 | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |