diff --git a/.github/workflows/nightly-release-v3.yml b/.github/workflows/nightly-release-v3.yml index 067a3c5f0..7043f58c5 100644 --- a/.github/workflows/nightly-release-v3.yml +++ b/.github/workflows/nightly-release-v3.yml @@ -383,11 +383,7 @@ jobs: echo "📝 Changes detected, creating commit..." # Create commit with error handling - if git commit -m "🤖 Automated nightly release ${{ steps.release.outputs.version }} - - Generated with [Claude Code](https://claude.ai/code) - - Co-Authored-By: Claude " 2>&1; then + if git commit -m "${{ steps.release.outputs.version }}" 2>&1; then echo "✅ Successfully created commit" # Push changes with retry logic @@ -473,7 +469,11 @@ jobs: echo "Release Body Preview:" echo "## Wails v3 Alpha Release - ${{ steps.release.outputs.version }}" echo "" - echo "${{ steps.read_notes.outputs.release_notes }}" + cat << 'RELEASE_NOTES_EOF' +${{ steps.read_notes.outputs.release_notes }} +RELEASE_NOTES_EOF + echo "" + echo "" echo "" echo "---" echo "" @@ -505,6 +505,8 @@ jobs: ${{ steps.read_notes.outputs.release_notes }} + + --- 🤖 This is an automated nightly release generated from the latest changes in the v3-alpha branch.