From f8456cb8f24d10fe0ace0e779e10281546fa29cb Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Fri, 13 Oct 2023 17:14:37 -0700 Subject: [PATCH] fix: fixes fetching release tag (#44) --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 83ce3ce83..caf376147 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -120,7 +120,7 @@ jobs: - name: Fetch tag id: fetch_tag if: startsWith(github.ref, 'refs/tags/') - run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITUB_OUTPUT + run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT - name: Push release image uses: input-output-hk/catalyst-ci/actions/push@master if: startsWith(github.ref, 'refs/tags/')