From 22e5446083c3e95fd48997445243aa01fdbf75b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Miguel=20Benito=20Calzada?= Date: Tue, 22 Nov 2022 18:15:44 +0100 Subject: [PATCH] Fix GHA's release workflow (#5694) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/kubeapps-general.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kubeapps-general.yaml b/.github/workflows/kubeapps-general.yaml index c234e9fcb0b..fb070630f16 100644 --- a/.github/workflows/kubeapps-general.yaml +++ b/.github/workflows/kubeapps-general.yaml @@ -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