fix(ci): resolve appimagetool freshness against its highest semver tag#136
Merged
Conversation
AppImage/appimagetool marks its rolling `continuous` nightly as the latest release, so the tag carries no digits and Latest-Semver returned $null, which the appimagetool check reports as a failed query. It files a stale-pin issue on every daily run regardless of the pin. Resolve that pin against the highest non-draft, non-prerelease semver tag instead. The pin (1.9.1) is current.
Move the GUI-vs-BDInfo-GUI differences into DIFFERENCES.md, fold the library description into the intro, and give the front-end table headers.
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.
Latest-Semverresolves a pin againstrepos/<repo>/releases/latest. AppImage/appimagetool marks its rollingcontinuousnightly as the latest release, so the tag carries no digits, the semver extraction returns$null, and the appimagetool check reports a failed query. It files a stale-pin issue on every daily run regardless of the pin state.Resolve that one pin against the highest non-draft, non-prerelease semver tag instead, via a sibling
Latest-Semver-Listedhelper. Other pins keep usingreleases/latest.The pin is current:
gui-package-linux.ps1has1.9.1, and1.9.1is the newest semver release (1.9.1,continuous,1.9.0).Verified by running the helper as committed against the live API — resolves
1.9.1, so neither the query-failed nor the behind-latest branch fires.action-validator,ryl -s,typosandzizmorpass on the changed workflow.Closes #135