From 56f72b898fb294aa7d36f9e0bdf3caccd14e5a78 Mon Sep 17 00:00:00 2001 From: Antony David Date: Thu, 19 Dec 2024 20:56:51 +0100 Subject: [PATCH] ci: remove setup toolchain --- .github/workflows/release.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa8f9c5..7e97e33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,18 +80,15 @@ jobs: with: persist-credentials: true - - name: Install Rust toolchain - uses: moonrepo/setup-rust@v1 - with: - bins: cargo-edit - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Publish to crates.io run: cargo publish env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + - uses: taiki-e/install-action@v2 + with: + tool: cargo-edit + - name: Update Cargo.toml version env: NEW_VERSION: ${{ inputs.publish-tag }}