Fix installs

This commit is contained in:
Maximilian Ammann 2022-10-23 12:43:50 +02:00
parent 7b41971b67
commit d70e786b66
2 changed files with 8 additions and 6 deletions

View File

@ -25,8 +25,9 @@ jobs:
run: just stable-toolchain
- uses: Swatinem/rust-cache@v2
- name: Install mdbook
shell: bash
run: cargo binstall mdbook
uses: ./.github/actions/cargo-install
with:
name: mdbook
- name: Install Dependencies
shell: bash
run: sudo apt-get install -y libwayland-dev libxkbcommon-dev # Required for winit

View File

@ -44,10 +44,11 @@ jobs:
run: |
just nightly-install-src
- name: Install wasm-bindgen
shell: bash
run: |
uses: ./.github/actions/cargo-install
# Install wasm-bindgen with test runner
cargo binstall wasm-bindgen-cli # We want the latest version, as Cargo uses the latest version of wasm-bindgen
# We want the latest version, as Cargo uses the latest version of wasm-bindgen
with:
name: wasm-bindgen-cli
- uses: Swatinem/rust-cache@v2
- name: Build lib
shell: bash