Fix YAML syntax errors in workflow files

This commit is contained in:
rcourtman 2025-11-13 23:54:55 +00:00
parent 99b53afc49
commit 86bc617940
3 changed files with 18 additions and 16 deletions

View file

@ -346,20 +346,20 @@ jobs:
fi
# Add installation instructions
cat >> "$NOTES_FILE" << EOF
## Installation
**Docker (recommended):**
\`\`\`bash
docker pull rcourtman/pulse:${VERSION}
\`\`\`
**Docker Compose:**
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
{
echo ""
echo "## Installation"
echo ""
echo "**Docker (recommended):**"
echo '```bash'
echo "docker pull rcourtman/pulse:${VERSION}"
echo '```'
echo ""
echo "**Docker Compose:**"
echo "Update your \`docker-compose.yml\` to use \`rcourtman/pulse:${VERSION}\`"
echo ""
echo "See the [Installation Guide](https://github.com/rcourtman/Pulse#installation) for complete setup instructions."
} >> "$NOTES_FILE"
echo "notes_file=${NOTES_FILE}" >> $GITHUB_OUTPUT

View file

@ -12,4 +12,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Echo test
run: echo "Test workflow triggered with input: ${{ inputs.test_input }}"
run: |
echo "Test workflow triggered with input: ${{ inputs.test_input }}"

View file

@ -13,4 +13,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Echo
run: echo "Test input: ${{ inputs.test }}"
run: |
echo "Test input: ${{ inputs.test }}"