Skip to content

Commit

Permalink
Tried adding in the toolchain to the GA
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Vadoola committed Oct 4, 2024
1 parent b12d372 commit f593fbc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f593fbc

Please sign in to comment.