chore: adopt vYYYY.MM.DD.HHMMSS.COMMIT versioning scheme
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 12s
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Failing after 11s
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been skipped
Workflow Lint & Validation / Validate Secrets Contract (push) Successful in 7s
Workflow Lint & Validation / Lint All Workflow Files (push) Failing after 12s
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 12s
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Failing after 20s
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been skipped
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been skipped
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been skipped
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been skipped
Validators (Pushes and Pull Requests) / Security & Secrets (push) Successful in 10s
Workflow Lint & Validation / Notify Lint Results (push) Failing after 1s

Change from v0.1.YYYYMMDD.HHMMSS.COMMIT to vYYYY.MM.DD.HHMMSS.COMMIT
to align with BizPrint versioning style:
- Semantic year.month.day separation via dots
- Preserves hourly precision (HHMMSS)
- Includes commit hash for traceability

Example: v2026.07.24.165410.7bd491e

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-24 17:17:03 +09:00
parent 00bdb5d6d1
commit efe47a2019
+3 -3
View File
@@ -64,9 +64,9 @@ jobs:
if [ -z "$VERSION_INPUT" ]; then if [ -z "$VERSION_INPUT" ]; then
# Simple, reliable version scheme: timestamp + commit hash # Simple, reliable version scheme: timestamp + commit hash
# Avoids unreliable Gitea API calls (network failures, timeouts) # Avoids unreliable Gitea API calls (network failures, timeouts)
# Format: v0.1.YYYYMMDD.HHMMSS.COMMIT # Format: vYYYY.MM.DD.HHMMSS.COMMIT
TIMESTAMP=$(TZ=Asia/Seoul date +%Y%m%d.%H%M%S) TIMESTAMP=$(TZ=Asia/Seoul date +%Y.%m.%d.%H%M%S)
VERSION="v0.1.${TIMESTAMP}.${COMMIT}" VERSION="v${TIMESTAMP}.${COMMIT}"
else else
VERSION="$VERSION_INPUT" VERSION="$VERSION_INPUT"
fi fi