From d587fa90d82533a4929598420020eaf1fd7d2ce2 Mon Sep 17 00:00:00 2001 From: Guillaume Anthouard Date: Sun, 29 May 2022 13:08:53 +0200 Subject: [PATCH] Fix CI --- .github/workflows/release.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f4ba3c..7ae5836 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,7 +7,7 @@ on: jobs: release-linux: - name: Build binaries (linux) and publish on crates.io + name: Build release (linux) runs-on: ubuntu-latest steps: - name: Checkout @@ -18,7 +18,6 @@ jobs: toolchain: stable default: true profile: minimal - components: rust-docs - name: Build release working-directory: hlbc-cli run: cargo build --release @@ -26,10 +25,8 @@ jobs: uses: softprops/action-gh-release@v1 with: files: target/release/hlbc-cli - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} release-windows: - name: Build binaries (windows) + name: Build release (windows) runs-on: windows-latest steps: - name: Checkout @@ -40,7 +37,6 @@ jobs: toolchain: stable default: true profile: minimal - components: rust-docs - name: Build release working-directory: hlbc-cli run: cargo build --release @@ -48,5 +44,3 @@ jobs: uses: softprops/action-gh-release@v1 with: files: target/release/hlbc-cli.exe - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}