chore(actions): add toolchain details to toolchain step

This commit is contained in:
Erica Marigold 2024-02-06 11:40:08 +05:30 committed by GitHub
parent 70327c1106
commit c493334a4f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,11 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install Rust Toolchain - name: Install Rust Toolchain
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
target: wasm32-unknown-unknown
components: rustc, cargo
- name: Install `cargo-binstall` Command - name: Install `cargo-binstall` Command
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
- name: Install Trunk - name: Install Trunk