Skip to content

Commit

Permalink
fix(workflows/release-crates-*): Use always() to run publish jobs w…
Browse files Browse the repository at this point in the history
…hen `no-build` is set (#33)
  • Loading branch information
fuzzypixelz authored Mar 13, 2024
1 parent 7819bc3 commit aa3f693
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release-crates-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
secrets: inherit

publish:
if: always()
needs: build
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-crates-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
github-token: ${{ secrets.BOT_WORKFLOW_TOKEN }}

publish:
if: always()
needs: build
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-crates-eclipse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
secrets: inherit

publish:
if: always()
needs: build
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-crates-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
github-token: ${{ secrets.BOT_WORKFLOW_TOKEN }}

publish:
if: always()
needs: build
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-crates-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
secrets: inherit

publish:
if: always()
needs: [build-standalone, build-debian]
runs-on: macos-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-crates-homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
github-token: ${{ secrets.BOT_TOKEN_WORKFLOW }}

publish:
if: always()
needs: build
runs-on: macos-latest
steps:
Expand Down

0 comments on commit aa3f693

Please sign in to comment.