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
|
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
|
||||||
|
|
||||||
|
|
|
||||||
3
.github/workflows/manual-test.yml
vendored
3
.github/workflows/manual-test.yml
vendored
|
|
@ -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 }}"
|
||||||
|
|
|
||||||
3
.github/workflows/test-simple.yml
vendored
3
.github/workflows/test-simple.yml
vendored
|
|
@ -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 }}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue