Fix version number consistency and correctness for Windows and Android release workflows#555
Merged
StuartFerguson merged 1 commit intomainfrom Apr 24, 2026
Conversation
… release workflows Agent-Logs-Url: https://github.com/TransactionProcessing/TransactionMobile/sessions/b586490c-4b9a-4f22-8060-2a577a974b56 Co-authored-by: StuartFerguson <[email protected]>
Copilot created this pull request from a session on behalf of
StuartFerguson
April 24, 2026 09:44
View session
Up to standards ✅🟢 Issues
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Both release workflows shared a broken version extraction step: the Android job ran
shell: powershellonubuntu-latest, and both used a non-deterministic day-of-year revision. Critically, Android'sApplicationVersionmust be a positive integer (maps toversionCode), not a 4-component MSIX dotted string.Changes
release_windows.ymlGet-Date.DayOfYearrevision —ApplicationVersionis now deterministic:major.minor.patch.0release_android.ymlshell: powershell→shell: bash(job runs onubuntu-latest)ApplicationVersionis now a proper AndroidversionCodeinteger:major * 1000000 + minor * 1000 + patchAPP_ANDROID_VERSIONto clarify platform intentVersion mapping (e.g. tag
v1.2.3)ApplicationDisplayVersion1.2.31.2.3ApplicationVersion1.2.3.01002003