Skip to content

Commit

Permalink
improve release ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Oct 18, 2023
1 parent 7094e8b commit 82d2db4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ jobs:
- name: Start sccache server
run: sccache --start-server
- name: Install cargo-about
if: "!startsWith(runner.os, 'Windows')"
run: curl -k https://installer.heliax.click/EmbarkStudios/[email protected]! | bash
- name: Install cargo-about
if: startsWith(runner.os, 'Windows')
run: |
curl -k https://installer.heliax.click/EmbarkStudios/[email protected] | bash
echo "::add-path::$GITHUB_WORKSPACE"
- name: ${{ matrix.make.name }}
run: make ${{ matrix.make.command }}
- name: Upload binaries package
Expand All @@ -84,6 +90,7 @@ jobs:
release:
needs: build
runs-on: ${{ matrix.os }}
if: success() || failure()
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 82d2db4

Please sign in to comment.