Skip to content

Commit

Permalink
Update nuget_build_release.yml (#314)
Browse files Browse the repository at this point in the history
Prevent character escaping
  • Loading branch information
kitsumed authored Feb 9, 2025
1 parent 3e439d3 commit 020be08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/nuget_build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:

- name: "Create NuGet release note file"
run: |
echo "${{ github.event.release.body }}" > PACKAGE-RELEASE-NOTES.txt
cat << 'EOF-WORKFLOW' > PACKAGE-RELEASE-NOTES.txt
${{ github.event.release.body }}
EOF-WORKFLOW
- name: "Restore packages"
run: dotnet restore "${{ env.PROJECT_PATH }}"
Expand Down

0 comments on commit 020be08

Please sign in to comment.