release: declare '- stable' substring inside the [1.0.6] body
The validate-release job in .github/workflows/docker-publish-android.yml uses an awk script to extract the section body, with a 'next' that skips the '## [TAG]' title line. The job then checks the body literally contains the substring ' - <channel>', where <channel> is either 'stable', 'preview', or 'unstable'. Prior to this fix, the only ' - stable' marker was on the title line, which the awk script discards. The job failed with 'must declare suffix - stable to match tag parity' even though the channel was correctly declared. Add a one-line preamble in the [1.0.6] body that contains the literal substring '1.0.6 - stable'. Keeps the Keep a Changelog title format, does not pollute the actual changelog text, and documents the convention for future release bumps.
This commit is contained in:
parent
b3d1911302
commit
cf696d3da5
1 changed files with 6 additions and 0 deletions
|
|
@ -28,6 +28,12 @@ pour la production des paquets `.deb`.
|
|||
|
||||
## [1.0.6] - stable
|
||||
|
||||
**Release channel: 1.0.6 - stable.** The validate-release job in
|
||||
`docker-publish-android.yml` greps the section body for the literal
|
||||
substring ` - stable` (with leading space and hyphen) to confirm the
|
||||
channel matches the tag parity. Keep this line as-is when bumping the
|
||||
patch in the future.
|
||||
|
||||
### Added
|
||||
- Self-hosted Forgejo Actions runner now drives the CI build for the
|
||||
yavsc repository, using the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue