Skip to content

Commit

Permalink
ci(tauri): fix multiline github output
Browse files Browse the repository at this point in the history
  • Loading branch information
NextFire committed Aug 24, 2024
1 parent 4a7590b commit 24f3802
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ jobs:
id: release_notes
run: |
notes="$(gh api -X POST /repos/${{ github.repository }}/releases/generate-notes -f tag_name=${{ github.ref_name }} | yq .body)"
notes="A Flatpak repository is also available, see https://github.com/Japan7/karaberus-flatpak<br><br>$notes"
echo notes="$notes" >> "$GITHUB_OUTPUT"
echo 'notes<<EOF' >> $GITHUB_OUTPUT
echo 'A Flatpak repository is also available, see https://github.com/Japan7/karaberus-flatpak' >> $GITHUB_OUTPUT
echo '' >> $GITHUB_OUTPUT
echo "$notes" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
outputs:
Expand Down

0 comments on commit 24f3802

Please sign in to comment.