Skip to content

Commit e80dfe0

Browse files
committed
github deploy fixed
1 parent 7c5d44e commit e80dfe0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,10 @@ jobs:
8080
echo "Extracted release notes for version $version:"
8181
printf "%b" "$release_notes"
8282
83-
# Set output
84-
echo "::set-output name=notes::$(printf "%b" "$release_notes")"
83+
# Set output (fixed, now using Environment File)
84+
echo "notes<<EOF" >> $GITHUB_OUTPUT
85+
printf "%b\n" "$release_notes" >> $GITHUB_OUTPUT
86+
echo "EOF" >> $GITHUB_OUTPUT
8587
8688
- name: Debug Release Notes
8789
run: |
@@ -104,4 +106,4 @@ jobs:
104106
env:
105107
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
106108
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
107-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)