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