diff --git a/action.yml b/action.yml index 0c45f02..e398f8b 100644 --- a/action.yml +++ b/action.yml @@ -250,7 +250,10 @@ runs: - name: "Copy body-text" if: ${{ inputs.dry-run == 'true' }} shell: bash - run: echo '${{ inputs.body-text }}' > $RUNNER_TEMP/Release_text_for_${PKGNAME}_${VERSION}${{ inputs._affix }}.md + run: | + cat > "$RUNNER_TEMP/Release_text_for_${PKGNAME}_${VERSION}${{ inputs._affix }}.md" <<'RELEASETEXTGOESHERE' + ${{ inputs.body-text }} + RELEASETEXTGOESHERE - name: "Upload the release assets" uses: actions/upload-artifact@v7