From 6b49981b3a6984ab36f5146de5d660e5c3a12aff Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Thu, 12 Mar 2026 08:03:53 -0700 Subject: [PATCH] Update build workflow version from 0.1.x to 0.2.x The computed build version was hardcoded as 0.1.${COMMIT_COUNT} across all three platform jobs (Linux, macOS, Windows), producing 0.1.x releases even though the source files were bumped to 0.2.0. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/build-app.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-app.yml b/.gitea/workflows/build-app.yml index a51a8b0..c5dfe06 100644 --- a/.gitea/workflows/build-app.yml +++ b/.gitea/workflows/build-app.yml @@ -58,7 +58,7 @@ jobs: id: version run: | COMMIT_COUNT=$(git rev-list --count HEAD) - VERSION="0.1.${COMMIT_COUNT}" + VERSION="0.2.${COMMIT_COUNT}" echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT echo "Computed version: ${VERSION}" @@ -187,7 +187,7 @@ jobs: id: version run: | COMMIT_COUNT=$(git rev-list --count HEAD) - VERSION="0.1.${COMMIT_COUNT}" + VERSION="0.2.${COMMIT_COUNT}" echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT echo "Computed version: ${VERSION}" @@ -279,7 +279,7 @@ jobs: id: version run: | for /f %%i in ('git rev-list --count HEAD') do set "COMMIT_COUNT=%%i" - set "VERSION=0.1.%COMMIT_COUNT%" + set "VERSION=0.2.%COMMIT_COUNT%" echo VERSION=%VERSION%>> %GITHUB_OUTPUT% echo Computed version: %VERSION%