release 0.0.3
All checks were successful
Backend Actions / check (push) Successful in 13s
Backend Actions / build (push) Successful in 21s
Backend Actions / package (push) Successful in 15s
Backend Actions / test (push) Successful in 27s

This commit is contained in:
2025-07-25 15:08:27 +01:00
parent 083c43bac2
commit a2bead80b1
2 changed files with 13 additions and 11 deletions

View File

@ -1,9 +1,11 @@
#!/usr/bin/env bash
TAGS="$(git tag --points-at HEAD)"
echo "Found tags $TAGS"
if [ -n "$TAGS" ]; then
TAG=$(echo "$TAGS" | grep -E '^v[0-9]+.[0-9]+.[0-9]+$' | sort -V | tail -1)
echo "RELEASE_TAG=$TAG" >> "$GITHUB_ENV"
echo "Found release tag $TAG"
echo "release_tag=$TAG" >> "$GITHUB_OUTPUTS"
else
echo "No release tag found"
fi