Fix heredoc syntax in release workflow

Cannot use GitHub Actions template syntax inside single-quoted heredoc
This commit is contained in:
rcourtman 2025-11-13 11:49:17 +00:00
parent cdb692c8fd
commit d77ea9e6f8

View file

@ -342,17 +342,18 @@ jobs:
echo "$GENERATED_NOTES" > "$NOTES_FILE"
# Add installation instructions
cat >> "$NOTES_FILE" << 'EOF'
VERSION="${{ needs.extract-version.outputs.version }}"
cat >> "$NOTES_FILE" << EOF
## Installation
**Docker (recommended):**
```bash
docker pull rcourtman/pulse:${{ needs.extract-version.outputs.version }}
```
\`\`\`bash
docker pull rcourtman/pulse:${VERSION}
\`\`\`
**Docker Compose:**
Update your `docker-compose.yml` to use `rcourtman/pulse:${{ needs.extract-version.outputs.version }}`
Update your \`docker-compose.yml\` to use \`rcourtman/pulse:${VERSION}\`
See the [Installation Guide](https://github.com/rcourtman/Pulse#installation) for complete setup instructions.
EOF