From 297cb8fc9170724b39b6279b9557d0c34976fbf2 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Wed, 11 Feb 2026 11:44:19 -0600 Subject: [PATCH] use UTC timestamp for version instead of git describe --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df8aa73..bf9a303 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,7 +115,7 @@ jobs: VERSION=${TAG#v} echo "is_tag=true" >> $GITHUB_OUTPUT else - VERSION=$(git describe --tags --always --dirty=-modified | sed 's/^v//') + VERSION=$(date -u '+%Y-%m-%dT%H:%M:%SZ') echo "is_tag=false" >> $GITHUB_OUTPUT fi SHORT_SHA=${GITHUB_SHA::7}