We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72512ad commit 92980d8Copy full SHA for 92980d8
.github/workflows/publish-marketplace.yml
@@ -50,11 +50,12 @@ jobs:
50
id: release
51
env:
52
GH_TOKEN: ${{ github.token }}
53
+ RELEASE_BODY: ${{ github.event.release.body }}
54
run: |
55
TAG="${{ needs.get-version.outputs.version }}"
56
if [ "${{ github.event_name }}" == "release" ]; then
57
echo "url='${{ github.event.release.html_url }}'" >> $GITHUB_OUTPUT
- echo "body=$(echo ${{ github.event.release.body }} | base64 -w 0)" >> $GITHUB_OUTPUT
58
+ echo "body=$(echo "$RELEASE_BODY" | base64 -w 0)" >> $GITHUB_OUTPUT
59
else
60
RELEASE_JSON=$(gh release view "$TAG" --json body,url)
61
echo "url=$(echo "$RELEASE_JSON" | jq -r '.url')" >> $GITHUB_OUTPUT
0 commit comments