From f593fbc62d11a28ea30577015d8b1ce35812c028 Mon Sep 17 00:00:00 2001 From: Carl Geib <299418+Vadoola@users.noreply.github.com> Date: Fri, 4 Oct 2024 17:13:10 +1300 Subject: [PATCH] Tried adding in the toolchain to the GA It appears the github actions is failing setting up the Rust toolchain and it's complaining about the lack of toolchain, which per the docs, should be something like stable, nightly, etc. --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a339cd..eee7596 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,10 +23,12 @@ jobs: - build: macos os: macos-latest target: x86_64-apple-darwin + toolchain: stable - build: macos-arm os: macos-latest target: aarch64-apple-darwin + toolchain: stable #- build: windows-gnu # os: windows-latest @@ -35,10 +37,12 @@ jobs: - build: windows-msvc os: windows-latest target: x86_64-pc-windows-msvc + toolchain: stable - build: linux os: ubuntu-latest target: x86_64-unknown-linux-gnu + toolchain: stable steps: - name: Checkout repository