mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
Fix nightly release workflow issues
- Fix backtick command substitution error using here-document - Add extra spacing before disclaimer section - Simplify commit message to just version number
This commit is contained in:
parent
ae2d97543f
commit
612e0853bf
1 changed files with 8 additions and 6 deletions
14
.github/workflows/nightly-release-v3.yml
vendored
14
.github/workflows/nightly-release-v3.yml
vendored
|
|
@ -418,11 +418,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 <noreply@anthropic.com>" 2>&1; then
|
||||
if git commit -m "${{ steps.release.outputs.version }}" 2>&1; then
|
||||
echo "✅ Successfully created commit"
|
||||
|
||||
# Push changes with retry logic
|
||||
|
|
@ -513,7 +509,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 ""
|
||||
|
|
@ -545,6 +545,8 @@ jobs:
|
|||
|
||||
${{ steps.read_notes.outputs.release_notes }}
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
🤖 This is an automated nightly release generated from the latest changes in the v3-alpha branch.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue