Fix YAML syntax errors in workflow files
This commit is contained in:
parent
99b53afc49
commit
86bc617940
3 changed files with 18 additions and 16 deletions
28
.github/workflows/create-release.yml
vendored
28
.github/workflows/create-release.yml
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
3
.github/workflows/manual-test.yml
vendored
3
.github/workflows/manual-test.yml
vendored
|
|
@ -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 }}"
|
||||
|
|
|
|||
3
.github/workflows/test-simple.yml
vendored
3
.github/workflows/test-simple.yml
vendored
|
|
@ -13,4 +13,5 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Echo
|
||||
run: echo "Test input: ${{ inputs.test }}"
|
||||
run: |
|
||||
echo "Test input: ${{ inputs.test }}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue