-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
548eaf2
commit b75dca3
Showing
1 changed file
with
18 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
|
||
jobs: | ||
release: | ||
name: Upload Release Asset | ||
name: Build then upload release asset | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
@@ -16,8 +16,23 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Just | ||
run: cargo install just | ||
- name: Install Binstall | ||
uses: cargo-bins/cargo-binstall@main | ||
|
||
- name: Set up Rust | ||
uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
targets: wasm32-unknown-unknown, wasm32-wasi | ||
toolchain: nightly-x86_64-unknown-linux-gnu | ||
components: rust-src, rustfmt | ||
|
||
- name: Install cargo component | ||
run: echo yes | cargo binstall [email protected] | ||
|
||
- name: Run binstall just | ||
run: | | ||
# Run binstall just with the --no-confirm flag | ||
cargo binstall just --no-confirm | ||
- name: Build and Compose Wasm | ||
run: just compose | ||
|