Skip to content

Commit

Permalink
chore: fix escaping of release notes during dotnet pack (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
CommonGuy committed Aug 29, 2022
1 parent feec9d9 commit 0f1df36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins:
- '@semantic-release/github'
prepare:
- - "@semantic-release/exec"
- prepareCmd: "dotnet pack -c Release -o ./artifacts /p:Version='${nextRelease.version}' /p:PackageReleaseNotes='${nextRelease.notes}'"
- prepareCmd: "dotnet pack -c Release -o ./artifacts /p:Version='${nextRelease.version}' /p:PackageReleaseNotes=\"\\\"${nextRelease.notes}\\\"\""
publish:
- - "@semantic-release/exec"
- publishCmd: "dotnet nuget push './artifacts/*.nupkg' --source $NUGET_SOURCE --api-key $NUGET_API_KEY"
Expand Down

0 comments on commit 0f1df36

Please sign in to comment.