Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature package workflow attempt #1031

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Publish Feature-Tagged Package to npmjs

on:
workflow_dispatch:

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-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: |
TAG_NAME=${GITHUB_REF#refs/heads/}
echo "Tagging release with $TAG_NAME"
wasm-pack publish --tag $TAG_NAME --access public -t web
env:
RUSTUP_TOOLCHAIN: nightly-2023-10-24
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading