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 run: just stable-toolchain
- uses: Swatinem/rust-cache@v2 - uses: Swatinem/rust-cache@v2
- name: Install mdbook - name: Install mdbook
shell: bash uses: ./.github/actions/cargo-install
run: cargo binstall mdbook with:
name: mdbook
- name: Install Dependencies - name: Install Dependencies
shell: bash shell: bash
run: sudo apt-get install -y libwayland-dev libxkbcommon-dev # Required for winit run: sudo apt-get install -y libwayland-dev libxkbcommon-dev # Required for winit

View File

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