1.0 Hotfix

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
meowarex
2026-08-11 18:00:43 +00:00
co-authored by Claude Opus 5
parent 0f00c4dca6
commit 24c429e8b9
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -16,8 +16,12 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- id: set - id: set
run: | run: |
# .version now holds the full semver (e.g. 1.0.0) and is bumped per release.
# It used to be a "0.3" prefix with github.run_number appended as the patch,
# which cannot express an exact 1.0.0. versionCode still tracks run_number,
# so it stays monotonic regardless of what versionName says.
BASE=$(cat .version | tr -d '[:space:]') BASE=$(cat .version | tr -d '[:space:]')
echo "version=$BASE.${{ github.run_number }}" >> $GITHUB_OUTPUT echo "version=$BASE" >> $GITHUB_OUTPUT
Build: Build:
needs: Version needs: Version
+1 -1
View File
@@ -1 +1 @@
0.3 1.0.0