Fix heredoc syntax in release workflow
Cannot use GitHub Actions template syntax inside single-quoted heredoc
This commit is contained in:
parent
cdb692c8fd
commit
d77ea9e6f8
1 changed files with 6 additions and 5 deletions
11
.github/workflows/release.yml
vendored
11
.github/workflows/release.yml
vendored
|
|
@ -342,17 +342,18 @@ jobs:
|
||||||
echo "$GENERATED_NOTES" > "$NOTES_FILE"
|
echo "$GENERATED_NOTES" > "$NOTES_FILE"
|
||||||
|
|
||||||
# Add installation instructions
|
# Add installation instructions
|
||||||
cat >> "$NOTES_FILE" << 'EOF'
|
VERSION="${{ needs.extract-version.outputs.version }}"
|
||||||
|
cat >> "$NOTES_FILE" << EOF
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
**Docker (recommended):**
|
**Docker (recommended):**
|
||||||
```bash
|
\`\`\`bash
|
||||||
docker pull rcourtman/pulse:${{ needs.extract-version.outputs.version }}
|
docker pull rcourtman/pulse:${VERSION}
|
||||||
```
|
\`\`\`
|
||||||
|
|
||||||
**Docker Compose:**
|
**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.
|
See the [Installation Guide](https://github.com/rcourtman/Pulse#installation) for complete setup instructions.
|
||||||
EOF
|
EOF
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue