Publish Package to crates.io and npmjs #3
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 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 }} |