From 5ee59f898017384377c642ac0d7a669de4938c19 Mon Sep 17 00:00:00 2001 From: Maxime Fournioux <55544262+mfournioux@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:14:26 +0100 Subject: [PATCH] correct chart tag env variable format in helm package action Signed-off-by: Maxime Fournioux <55544262+mfournioux@users.noreply.github.com> --- .github/workflows/publish-helm-ghcr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-helm-ghcr.yaml b/.github/workflows/publish-helm-ghcr.yaml index 20ea66b0d069c..5fc1b626e94cb 100644 --- a/.github/workflows/publish-helm-ghcr.yaml +++ b/.github/workflows/publish-helm-ghcr.yaml @@ -35,7 +35,7 @@ jobs: run: echo "CHART_TAG=$(helm show chart examples/online_serving/chart-helm | awk '/version/ {print $2}')" >> "$GITHUB_ENV" - name: helm package - run: helm package examples/online_serving/chart-helm --version $CHART_TAG + run: helm package examples/online_serving/chart-helm --version ${{ env.CHART_TAG }} - name: helm push # if: ${{ github.event_name == 'push' }}