File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 72
72
CHANGELOG="${CHANGELOG//'%'/'%25'}"
73
73
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
74
74
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
75
- echo "::set-output name= version:: $VERSION"
76
- echo "::set-output name=name:: $NAME"
77
- echo "::set-output name= changelog:: $CHANGELOG"
75
+ echo "version= $VERSION" >> $GITHUB_OUTPUT
76
+ echo "name=$NAME" >> $GITHUB_OUTPUT
77
+ echo "changelog= $CHANGELOG" >> $GITHUB_OUTPUT
78
78
79
79
# Run plugin build
80
80
- name : Run Build
88
88
cd ${{ github.workspace }}/build/distributions
89
89
FILENAME=`ls *.zip`
90
90
unzip "$FILENAME" -d content
91
- echo "::set-output name=filename::${FILENAME:0:-4}"
91
+ echo "filename=${FILENAME:0:-4}" >> $GITHUB_OUTPUT
92
+
92
93
# Store already-built plugin as an artifact for downloading
93
94
- name : Upload artifact
94
95
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 41
41
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
42
42
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
43
43
44
- echo "::set-output name= changelog:: $CHANGELOG"
44
+ echo "changelog= $CHANGELOG" >> $GITHUB_OUTPUT
45
45
46
46
# Update Unreleased section with the current release note
47
47
- name : Patch Changelog
You can’t perform that action at this time.
0 commit comments