We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c5d44e commit e80dfe0Copy full SHA for e80dfe0
.github/workflows/deploy.yml
@@ -80,8 +80,10 @@ jobs:
80
echo "Extracted release notes for version $version:"
81
printf "%b" "$release_notes"
82
83
- # Set output
84
- echo "::set-output name=notes::$(printf "%b" "$release_notes")"
+ # Set output (fixed, now using Environment File)
+ echo "notes<<EOF" >> $GITHUB_OUTPUT
85
+ printf "%b\n" "$release_notes" >> $GITHUB_OUTPUT
86
+ echo "EOF" >> $GITHUB_OUTPUT
87
88
- name: Debug Release Notes
89
run: |
@@ -104,4 +106,4 @@ jobs:
104
106
env:
105
107
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
108
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments