From 13dd7bb5cf27a6a22f7643213d028a481ac864b6 Mon Sep 17 00:00:00 2001 From: beckermr Date: Sun, 4 Aug 2024 07:38:59 -0500 Subject: [PATCH] fix: figure out why tag is not working --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3eec6b10a..66298adb5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,9 @@ jobs: - name: compute next version id: version run: | + echo "current version: "$(git describe --tags --abbrev=0) NEXT=$(python autotick-bot/compute_next_version.py) + echo "next version: ${NEXT}" echo "NEXT=${NEXT}" >> "$GITHUB_OUTPUT" - name: log into ghcr.io