Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Apr 18, 2024
1 parent 548eaf2 commit b75dca3
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release:
name: Upload Release Asset
name: Build then upload release asset
runs-on: ubuntu-latest

steps:
Expand All @@ -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
Expand Down

0 comments on commit b75dca3

Please sign in to comment.