From 4bc5cf83333abb91ddbaf1729fc402b8b59092e1 Mon Sep 17 00:00:00 2001 From: Matthias Riegler Date: Mon, 21 Mar 2022 12:24:59 +0100 Subject: [PATCH] fix: properly detect tag Signed-off-by: Matthias Riegler --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 971e610a..c5f92af0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@v2 - name: Extract Tag id: vars - run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} + run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/v} - name: Build manifests env: RELEASE_VERSION: ${{ steps.vars.outputs.tag }}