diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 8d1e0db..d03dcab 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -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 diff --git a/.github/workflows/manual-test.yml b/.github/workflows/manual-test.yml index ac613bf..f1cca33 100644 --- a/.github/workflows/manual-test.yml +++ b/.github/workflows/manual-test.yml @@ -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 }}" diff --git a/.github/workflows/test-simple.yml b/.github/workflows/test-simple.yml index 3115908..1ba6eeb 100644 --- a/.github/workflows/test-simple.yml +++ b/.github/workflows/test-simple.yml @@ -13,4 +13,5 @@ jobs: runs-on: ubuntu-latest steps: - name: Echo - run: echo "Test input: ${{ inputs.test }}" + run: | + echo "Test input: ${{ inputs.test }}"