Skip to content

Commit

Permalink
install wasm-pack from git
Browse files Browse the repository at this point in the history
  • Loading branch information
bminixhofer committed Feb 13, 2021
1 parent 22ccdbe commit 3b04d6d
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Install wasm-pack # need a build from master for https://github.com/rustwasm/wasm-pack/pull/839
run: cargo install --git https://github.com/rustwasm/wasm-pack --rev d46d1c6
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
Expand Down Expand Up @@ -129,8 +131,12 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Install wasm-pack # need a build from master for https://github.com/rustwasm/wasm-pack/pull/839
run: cargo install --git https://github.com/rustwasm/wasm-pack --rev d46d1c6
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
Expand Down

0 comments on commit 3b04d6d

Please sign in to comment.