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

View file

@ -12,4 +12,5 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Echo test - 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 runs-on: ubuntu-latest
steps: steps:
- name: Echo - name: Echo
run: echo "Test input: ${{ inputs.test }}" run: |
echo "Test input: ${{ inputs.test }}"