From 4f5a4cf01d69653531a0677c20ac3618ab23abcc Mon Sep 17 00:00:00 2001 From: Julian Dax Date: Wed, 28 Sep 2022 23:39:18 +0200 Subject: [PATCH] chore: try fixing homebrew deployment --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a33961..7a688a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -212,12 +212,12 @@ jobs: # license or license-file, description, homepage, documentation, repository, readme. # Read more: https://doc.rust-lang.org/cargo/reference/publishing.html - - name: Install ${{ matrix.rust }} toolchain + - name: Install stable toolchain uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.rust }} - target: ${{ matrix.target }} + toolchain: stable + target: x86_64-unknown-linux-gnu override: true components: cargo - run: cargo publish --token ${CRATES_TOKEN}