Updated tag release workflow
All checks were successful
Release Tagging / release (push) Successful in 29s

This commit is contained in:
2025-03-21 20:28:59 -04:00
parent 9121bc87e7
commit 547d6b0b74

View File

@@ -28,5 +28,9 @@ jobs:
id: version id: version
run: | run: |
VERSION=$(grep '^version = "' Cargo.toml | sed -E 's/version = "([^"]+)"/\1/') VERSION=$(grep '^version = "' Cargo.toml | sed -E 's/version = "([^"]+)"/\1/')
echo "::set-output name=version::$VERSION" PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
echo "tag: $TAG" BRANCH_REF="${GITHUB_REF}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
echo "Version: $VERSION"
echo "Hash: $PROJECT_COMMIT_HASH"
echo "Branch: $BRANCH_NAME"