Skip to content

Commit

Permalink
Trying different toolchain version for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
CraZySacX committed Feb 10, 2024
1 parent d25c5ba commit c0e1540
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,20 @@ jobs:
- name: ✅ Checkout ✅
uses: actions/checkout@v4
- name: 🧱 Build and Release 🧱
if: matrix.target == 'x86_64-pc-windows-gnu' || matrix.target == 'x86_64-unknown-linux-musl'
uses: rust-build/rust-build.action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
TOOLCHAIN_VERSION: nightly
TOOLCHAIN_VERSION: nightly
- name: 🧱 Build and Release 🧱
if: matrix.target == 'x86_64-apple-darwin'
uses: rust-build/rust-build.action@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: ${{ matrix.target }}
ARCHIVE_TYPES: ${{ matrix.archive }}
TOOLCHAIN_VERSION: "1.75"

0 comments on commit c0e1540

Please sign in to comment.