release/1.0.6 #28

Merged
notazof merged 24 commits from release/1.0.6 into main 2026-08-18 01:02:44 +01:00
Showing only changes of commit 739cd716ec - Show all commits

Merge pull request #70 from pazof/copilot/fix-validate-release-job

fix(ci): validate-release channel check always failed for stable/preview tags
Paul Schneider 2026-08-17 02:05:01 +01:00 committed by GitHub
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -129,12 +129,12 @@ jobs:
exit 1
fi
# Vérification cohérence du canal déclaré dans le suffixe.
# Vérification cohérence du canal déclaré dans le titre de section.
# Format attendu : "## [TAG] - stable" / "- preview" / "- unstable".
if [[ "$BODY" != *" - $CHANNEL"* ]]; then
HEADER=$(grep -m1 "^## \[$TAG\]" CHANGELOG.md)
if [[ "$HEADER" != *" - $CHANNEL"* ]]; then
echo "::error::Section '## [$TAG]' must declare suffix '- $CHANNEL' to match tag parity."
echo "Current section body (first 5 lines):"
echo "$BODY" | head -5
echo "Current section header: $HEADER"
exit 1
fi