From c493334a4fa88e088a8e397206ee4bfcb6eb109e Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 6 Feb 2024 11:40:08 +0530 Subject: [PATCH] chore(actions): add toolchain details to toolchain step --- .github/workflows/pages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index ce50036..d33dcbf 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -16,6 +16,11 @@ jobs: uses: actions/checkout@v2 - name: Install Rust Toolchain uses: actions-rs/toolchain@v1 + with: + toolchain: stable + profile: minimal + target: wasm32-unknown-unknown + components: rustc, cargo - 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 - name: Install Trunk