Compare commits

...

1 Commits

Author SHA1 Message Date
1265c10df8 tsk-73: Another tweak
All checks were successful
Release Tagging / release (pull_request) Successful in 38s
Rust Build / Rustfmt (pull_request) Successful in 29s
Rust Build / Clippy (pull_request) Successful in 31s
Rust Build / build (pull_request) Successful in 39s
Rust Build / Test Suite (pull_request) Successful in 40s
Rust Build / Check (pull_request) Successful in 1m1s
2025-10-18 21:36:03 -04:00

View File

@@ -27,8 +27,7 @@ jobs:
VERSION=$(grep '^version = "' Cargo.toml | sed -E 's/version = "([^"]+)"/\1/') VERSION=$(grep '^version = "' Cargo.toml | sed -E 's/version = "([^"]+)"/\1/')
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10) PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}" BRANCH_REF="${{ gitea.ref }}"
BRANCH_REF_NAME="${{ gitea.ref_name }}" BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
BRANCH_NAME="${{ gitea.ref_type }}"
PROJECT_TAG_RELEASE="v$VERSION-$BRANCH_NAME-$PROJECT_COMMIT_HASH-111" PROJECT_TAG_RELEASE="v$VERSION-$BRANCH_NAME-$PROJECT_COMMIT_HASH-111"
echo "::set-output name=project_tag_release::$PROJECT_TAG_RELEASE" echo "::set-output name=project_tag_release::$PROJECT_TAG_RELEASE"
@@ -36,7 +35,6 @@ jobs:
echo "Version: $VERSION" echo "Version: $VERSION"
echo "Hash: $PROJECT_COMMIT_HASH" echo "Hash: $PROJECT_COMMIT_HASH"
echo "Branh ref: $BRANCH_REF" echo "Branh ref: $BRANCH_REF"
echo "Branh ref name: $BRANCH_REF_NAME"
echo "Branch: $BRANCH_NAME" echo "Branch: $BRANCH_NAME"
echo "Tag Release: $PROJECT_TAG_RELEASE" echo "Tag Release: $PROJECT_TAG_RELEASE"