From 4e925e601037faef1127af8483aac75bd73e01af Mon Sep 17 00:00:00 2001 From: Maxime Fournioux <55544262+mfournioux@users.noreply.github.com> Date: Mon, 3 Feb 2025 14:52:36 +0100 Subject: [PATCH] remove double quote 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 0eaebbc8c271..799e6f5c87ff 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 $CHART_TAG - name: helm push # if: ${{ github.event_name == 'push' }}