Compare commits

..

5 Commits

Author SHA1 Message Date
phoenix 19b785e010 tsk-73: Workflow fix 2025-10-18 21:17:36 -04:00
phoenix 3437ee7c5b tsk-73: Updated tag release workflow 2025-10-18 21:12:29 -04:00
phoenix bd26afdddf Version bump 2025-10-18 21:02:13 -04:00
phoenix 580f5e9be7 tsk-73: Code cleanup:
:
2025-10-18 21:00:38 -04:00
phoenix 3ee3ac737b tsk-73: Change type of date_created to an option of time::OffsetDateTime 2025-10-18 20:57:21 -04:00
+2 -4
View File
@@ -1,12 +1,10 @@
name: Release Tagging
on:
push:
branches:
- next-v0.8
pull_request:
branches:
- main
- next-v0.8
jobs:
release:
@@ -28,7 +26,7 @@ jobs:
run: |
VERSION=$(grep '^version = "' Cargo.toml | sed -E 's/version = "([^"]+)"/\1/')
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_REF="${GITHUB_REF}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
PROJECT_TAG_RELEASE="v$VERSION-$BRANCH_NAME-$PROJECT_COMMIT_HASH-111"