Skip to content

Commit

Permalink
🐛 add if conditions for tasks that run for released tags (#178)
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
chris-rock authored Mar 13, 2022
1 parent 481aab1 commit 75cfee4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -193,8 +193,14 @@ jobs:

# publish kubectl manifests
run-release-manifests:
if: startsWith(github.ref, 'refs/tags/v')
uses: ./.github/workflows/release-manifests.yaml
needs:
- build-operator

# publish helm chart after the release of container images is complete
run-release-helm:
if: startsWith(github.ref, 'refs/tags/v')
uses: ./.github/workflows/release-helm-chart.yaml
needs:
- build-operator

0 comments on commit 75cfee4

Please sign in to comment.