From 7667da5d26ac7df47c99023f525e2f5d1bdcbc2f Mon Sep 17 00:00:00 2001 From: Johannes Edmeier Date: Mon, 29 Jan 2024 17:09:38 +0100 Subject: [PATCH] build: fix app_version not being picked up --- .github/workflows/bump-chart-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bump-chart-version.yml b/.github/workflows/bump-chart-version.yml index c5fde198..a1e4d3bc 100644 --- a/.github/workflows/bump-chart-version.yml +++ b/.github/workflows/bump-chart-version.yml @@ -41,7 +41,7 @@ jobs: # this commit will effectively cause another run of the workflow which then actually performs the helm chart release - run: | npm install -g semver - make chart-bump-version CHART="${{ inputs.chart }}" APP_VERSION="${{ needs.build-images.outputs.version }}" + make chart-bump-version CHART="${{ inputs.chart }}" APP_VERSION="${{ inputs.app_version }}" git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" git commit -am "chore: update helm chart version"