From 1a84784a70af3cc1d876578dbe1757963c490ecd Mon Sep 17 00:00:00 2001 From: Dan Pock Date: Fri, 25 Jul 2025 16:30:20 -0400 Subject: [PATCH] Ensure TAG_NAME env is set --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 620fed2..875412d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,9 +45,12 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name : Make test helm chart + env: + TAG_NAME: ${{ github.ref_name }} run: TAG=$TAG_NAME make package-helm - name: Add test helm chart to release env: + TAG_NAME: ${{ github.ref_name }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release upload "$TAG_NAME" "./build/charts/rancher-kubectl-test-${TAG_NAME}.tgz"