From f713362c3e07fc8f6694321cf907ce49562eb04d Mon Sep 17 00:00:00 2001 From: Marvin Flock Date: Mon, 11 Aug 2025 23:51:45 +0200 Subject: [PATCH] chore: debug tag versions --- .github/workflows/build_release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 4896c8f..6882866 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -25,6 +25,12 @@ jobs: - name: Install npm dependencies run: npm ci + - name: list tags & refs + run: | + echo "GITHUB_REF=$GITHUB_REF" + git tag --list + git show-ref --tags || true + - name: Get version from git tag run: echo "VERSION=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV