From 4d299726081da55a7d05d52710c1a8b47191ff9f Mon Sep 17 00:00:00 2001 From: poly000 <1348292515@qq.com> Date: Sat, 30 Mar 2024 15:52:02 +0800 Subject: [PATCH] ci: use nightly toolchain --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3724499..c7d7ee1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: uses: actions-rs/toolchain@v1 with: target: ${{ matrix.target }} - toolchain: stable + toolchain: nightly override: true - name: Checkout code @@ -47,7 +47,7 @@ jobs: - name: Run code build uses: actions-rs/cargo@v1 with: - toolchain: stable + toolchain: nightly command: build args: --release --target ${{ matrix.target }}