From 4571ce9d5b7c408dc285907475130ae2dacb10ad Mon Sep 17 00:00:00 2001 From: Art <4998038+Alorel@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:51:43 +0100 Subject: [PATCH] fix(init): Remove rust-toolchain.toml before installing to avoid nightly compiler version mismatches --- init/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init/action.yml b/init/action.yml index 38a78c0..f16a7fd 100644 --- a/init/action.yml +++ b/init/action.yml @@ -26,6 +26,9 @@ branding: runs: using: composite steps: + - name: Rm toolchain override + run: "if [ -f rust-toolchain.toml ]; then rm rust-toolchain.toml; fi" + shell: bash - name: Install toolchain id: toolchain uses: dtolnay/rust-toolchain@master