We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a88956 commit 4a803bfCopy full SHA for 4a803bf
1 file changed
.github/workflows/publish.yml
@@ -34,10 +34,17 @@ jobs:
34
run: |
35
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
36
37
+ - name: Debug release notes
38
+ run: |
39
+ if [ -f release-notes.txt ]; then
40
+ cat release-notes.txt
41
+ else
42
+ echo "No release notes found."
43
+
44
- name: Update .csproj with version and release notes
45
46
if [ -f release-notes.txt ]; then
- RELEASE_NOTES=$(cat release-notes.txt)
47
+ RELEASE_NOTES=$(cat release-notes.txt | sed 's/[\&/]/\\&/g')
48
else
49
RELEASE_NOTES=""
50
fi
0 commit comments