use UTC timestamp for version instead of git describe

This commit is contained in:
Graham McIntire 2026-02-11 11:44:19 -06:00
parent 39641b73d4
commit 297cb8fc91
No known key found for this signature in database

View file

@ -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}