Skip to content

Commit 020be08

Browse files
authored
Update nuget_build_release.yml (#314)
Prevent character escaping
1 parent 3e439d3 commit 020be08

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/nuget_build_release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424

2525
- name: "Create NuGet release note file"
2626
run: |
27-
echo "${{ github.event.release.body }}" > PACKAGE-RELEASE-NOTES.txt
27+
cat << 'EOF-WORKFLOW' > PACKAGE-RELEASE-NOTES.txt
28+
${{ github.event.release.body }}
29+
EOF-WORKFLOW
2830
2931
- name: "Restore packages"
3032
run: dotnet restore "${{ env.PROJECT_PATH }}"

0 commit comments

Comments
 (0)