Skip to content

Commit

Permalink
Fix GHA's release workflow (#5694)
Browse files Browse the repository at this point in the history
This commit fixes the GHA's Release Pipeline. Currently, this workflow is
not working properly because the `sync_chart_from_bitnami` only runs
when the pipeline is triggered from the main branch, but it should run
when it's triggered from a version tag also.

Signed-off-by: Jesús Benito Calzada <bjesus@vmware.com>
  • Loading branch information
Jesús Miguel Benito Calzada authored Nov 22, 2022
1 parent 858b73f commit 22e5446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/kubeapps-general.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ jobs:
sync_chart_from_bitnami:
needs:
- setup
if: needs.setup.outputs.running_on_main == 'true'
if: needs.setup.outputs.running_on_main == 'true' || needs.setup.outputs.running_on_tag == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 22e5446

Please sign in to comment.