From d7abbfe1e6f535d484a95c4f6ce47d893c167dc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Lange?= Date: Mon, 4 May 2026 22:17:30 +0200 Subject: [PATCH] fix(ci): release title uses 'fusionAIze Gate vX.Y.Z' convention The prerelease workflow created GitHub releases with the bare tag as title (vX.Y.Z). The notify-tap workflow validates for 'fusionAIze Gate vX.Y.Z' format, causing a silent failure on every release. Now the title is set correctly at creation time, so the Homebrew Tap notification triggers automatically without manual fix-up. --- .github/workflows/prerelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 85a7ed6..ef7a6ae 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -70,7 +70,7 @@ jobs: gh release edit "$TAG" --notes-file filtered-notes.md echo "updated existing release $TAG" else - gh release create "$TAG" --title "$TAG" --notes-file filtered-notes.md + gh release create "$TAG" --title "fusionAIze Gate $TAG" --notes-file filtered-notes.md echo "created release $TAG" fi