Skip to content

Commit

Permalink
Update ci-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsens authored Sep 15, 2023
1 parent dbe4879 commit 6e9736f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,17 @@ jobs:

update-helm:
uses: ./.github/workflows/update-helm-chart.yml
needs: [release, analyze-commits]
needs:
- release
- analyze-commits
secrets: inherit
if: >-
${{ (startsWith(github.ref, 'refs/tags/') ||
github.ref == 'refs/heads/main' ||
github.ref == 'refs/heads/master') &&
github.event_name == 'push' &&
needs.analyze-commits.outputs.release-version != '' &&
needs.analyze-commits.outputs.release-version != null }}
with:
version: ${{ needs.analyze-commits.outputs.release-version }}

0 comments on commit 6e9736f

Please sign in to comment.