From ec91c12b39bfb5bd2b9ce65a788b1063abbd3876 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 18 Sep 2023 14:15:49 -0500 Subject: [PATCH] chore(ci): Move off of actions-rs --- .github/workflows/post-release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml index af207a8..9db27b1 100644 --- a/.github/workflows/post-release.yml +++ b/.github/workflows/post-release.yml @@ -85,12 +85,10 @@ jobs: sudo apt-get update sudo apt-get install -y --no-install-recommends xz-utils liblz4-tool musl-tools - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@stable with: toolchain: ${{ matrix.rust }} - profile: minimal - override: true - target: ${{ matrix.target }} + targets: ${{ matrix.target }} - name: Build release binary run: cargo build --target ${{ matrix.target }} --verbose --release - name: Build archive