From 0fd6f4ba80c932944e42f17c615eac33a2956514 Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Tue, 13 Feb 2024 16:15:46 -0800 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b50eb3..d7c5550 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,8 +14,10 @@ jobs: matrix: target: [x86_64-unknown-linux-musl] steps: - - uses: actions/checkout@master - - name: Compile and release + - uses: actions/checkout@v4 + - name: Setup + run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} + - name: Compile binaries and release uses: rust-build/rust-build.action@v1.4.4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}