We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ba76c5 commit df176deCopy full SHA for df176de
1 file changed
.github/workflows/release.yml
@@ -18,6 +18,7 @@ env:
18
19
jobs:
20
release-please:
21
+ if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
22
runs-on: ubuntu-latest
23
outputs:
24
release_created: ${{ steps.release.outputs.release_created }}
@@ -30,7 +31,7 @@ jobs:
30
31
32
release-build:
33
needs: release-please
- if: ${{ needs.release-please.outputs.release_created || github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/v') }}
34
+ if: ${{ always() && (needs.release-please.outputs.release_created == 'true' || github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/v')) }}
35
name: Release Build
36
strategy:
37
fail-fast: false
0 commit comments