mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-11 14:00:29 +00:00
Fix heredoc syntax in release workflow
Cannot use GitHub Actions template syntax inside single-quoted heredoc
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user