From 069853a7c590ee21efa5779cfd03122a6a400f56 Mon Sep 17 00:00:00 2001 From: DecDuck Date: Wed, 7 May 2025 13:51:27 +1000 Subject: [PATCH] fix: switch to rust nightly --- desktop/.github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/.github/workflows/release.yml b/desktop/.github/workflows/release.yml index 709be194..395f212c 100644 --- a/desktop/.github/workflows/release.yml +++ b/desktop/.github/workflows/release.yml @@ -36,8 +36,8 @@ jobs: with: node-version: lts/* - - name: install Rust stable - uses: dtolnay/rust-toolchain@stable + - name: install Rust nightly + uses: dtolnay/rust-toolchain@nightly with: # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds. targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}