fix(ci): strip Made-with trailer from release body
CI / Build & Test (push) Successful in 1m40s

Made-with: Cursor
This commit is contained in:
Raven Scott
2026-02-27 19:06:38 -05:00
parent a8f2761105
commit 09e2d0b0a7
+2 -1
View File
@@ -135,7 +135,8 @@ jobs:
SHORT_SHA=$(echo "${{ github.sha }}" | cut -c1-7)
TAG="latest-main"
TITLE="Latest build (main @ ${SHORT_SHA})"
BODY="Automated build from \`main\` branch.\n\n**Commit:** \`${{ github.sha }}\`\n**Message:** ${{ github.event.head_commit.message }}\n\nThis release is updated on every push to main and always contains the latest artifacts."
COMMIT_MSG=$(echo "${{ github.event.head_commit.message }}" | sed '/^Made-with:/d' | sed '/^$/d' | head -1)
BODY="Automated build from \`main\` branch.\n\n**Commit:** \`${{ github.sha }}\`\n**Message:** ${COMMIT_MSG}\n\nThis release is updated on every push to main and always contains the latest artifacts."
API="${{ github.server_url }}/api/v1/repos/${{ github.repository }}"
AUTH="Authorization: token ${{ secrets.RELEASE_TOKEN }}"