Skip to content

Commit

Permalink
use multiline action output for html
Browse files Browse the repository at this point in the history
  • Loading branch information
janthoXO committed Jul 21, 2024
1 parent 4cb6c8b commit f988539
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ jobs:
sudo apt-get install -y pandoc
MARKDOWN="${{ github.event.release.body }}"
HTML=$(echo "$MARKDOWN" | pandoc -f markdown -t html)
echo "html_output=$HTML" >> $GITHUB_OUTPUT
echo "html_output<<EOFMARKER" >> ${GITHUB_OUTPUT}
echo "${HTML}" >> ${GITHUB_OUTPUT}
echo "EOFMARKER" >> ${GITHUB_OUTPUT}
# echo "html_output=$HTML" >> $GITHUB_OUTPUT

# Publish the plugin to JetBrains Marketplace
- name: Publish Plugin
Expand Down

0 comments on commit f988539

Please sign in to comment.