From 0570c87f80f2a9fd09886ede04dd74ac54faf456 Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Wed, 21 May 2025 10:46:02 +0200 Subject: [PATCH] charts: fix things Co-Authored-By: Thomas Siegfried Krampl --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 376d840..803d995 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -97,7 +97,7 @@ jobs: '.image.tag="${{ needs.build.outputs.version }}"' \ "${{ env.CHART_PATH }}/values.yaml" --inplace - # helm dependency update "${{ env.CHART_PATH }}" + helm dependency update "${{ env.CHART_PATH }}" helm package "${{ env.CHART_PATH }}" --destination . name=$(yq '.name' < "${{ env.CHART_PATH }}/Chart.yaml") @@ -112,7 +112,7 @@ jobs: rollout: name: Rollout if: github.actor != 'dependabot[bot]' && github.ref == 'refs/heads/master' - needs: build + needs: [build, charts] runs-on: fasit-deploy permissions: id-token: write @@ -124,4 +124,4 @@ jobs: - uses: nais/fasit-deploy@v2 # ratchet:exclude with: chart: oci://${{ env.GOOGLE_REGISTRY }}/nais-io/nais/feature/${{ matrix.chart }} - version: "1.0.0-${{ needs.build.outputs.chart_version }}" + version: "1.0.0-${{ needs.build.outputs.version }}"