From d77ea9e6f8bbf2937397263bdcc513d8d9c2c5d7 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Thu, 13 Nov 2025 11:49:17 +0000 Subject: [PATCH] Fix heredoc syntax in release workflow Cannot use GitHub Actions template syntax inside single-quoted heredoc --- .github/workflows/release.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 550ec68..876de05 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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