From 5f927ce9c3a4a353ed85f979168dd7814a776aa3 Mon Sep 17 00:00:00 2001 From: Ulyssa Date: Thu, 15 May 2025 21:21:05 -0700 Subject: [PATCH] Binaries worklog should override `rust-toolchain.yml` (#420) --- .github/workflows/binaries.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 3299035..eba1f53 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -62,7 +62,7 @@ jobs: - name: Run sccache-cache uses: mozilla-actions/sccache-action@v0.0.9 - name: 'Build: binary' - run: cargo build --release --locked --target ${{ env.TARGET }} + run: cargo +stable build --release --locked --target ${{ env.TARGET }} - name: 'Upload: binary' uses: actions/upload-artifact@v4 with: @@ -73,8 +73,8 @@ jobs: - name: 'Package: deb' if: matrix.platform == 'ubuntu-latest' run: | - cargo install --locked cargo-deb - cargo deb --no-strip --target ${{ env.TARGET }} + cargo +stable install --locked cargo-deb + cargo +stable deb --no-strip --target ${{ env.TARGET }} - name: 'Upload: deb' if: matrix.platform == 'ubuntu-latest' uses: actions/upload-artifact@v4 @@ -84,8 +84,8 @@ jobs: - name: 'Package: rpm' if: matrix.platform == 'ubuntu-latest' run: | - cargo install --locked cargo-generate-rpm - cargo generate-rpm --target ${{ env.TARGET }} + cargo +stable install --locked cargo-generate-rpm + cargo +stable generate-rpm --target ${{ env.TARGET }} - name: 'Upload: rpm' if: matrix.platform == 'ubuntu-latest' uses: actions/upload-artifact@v4