From b233a0a0e6e473bb635ff3e593e9d758f62f8059 Mon Sep 17 00:00:00 2001 From: Justin Alvarez Date: Fri, 18 Oct 2024 15:43:14 +0000 Subject: [PATCH] use ref instead of ref_name Signed-off-by: Justin Alvarez --- .github/workflows/get-version-and-tag-for-ref.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/get-version-and-tag-for-ref.yaml b/.github/workflows/get-version-and-tag-for-ref.yaml index 0c6148b27..a09a8a12c 100644 --- a/.github/workflows/get-version-and-tag-for-ref.yaml +++ b/.github/workflows/get-version-and-tag-for-ref.yaml @@ -39,7 +39,7 @@ jobs: if [ -n "${{ inputs.ref_name }}" ]; then tag=${{ inputs.ref_name }} else - tag=${{ github.ref_name }} + tag=${{ github.ref }} fi echo "tag=$tag" >> ${GITHUB_OUTPUT}