File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -63,15 +63,20 @@ jobs:
6363 fi
6464
6565 - name : Generate changelog
66- run : |
67- python3 .github/changelogs.py ${{ steps.target.outputs.target }} --ci
66+ uses : hanthor/changelog-action@master
67+ with :
68+ stream : ${{ steps.target.outputs.target }}
69+ family : bluefin-lts
70+ output-env : ./output.env
6871
6972 - name : Read changelog outputs
7073 id : changelog
7174 run : |
7275 # Source the output.env file to get TAG and TITLE
7376 if [ -f output.env ]; then
74- cat output.env >> $GITHUB_OUTPUT
77+ source ./output.env
78+ echo "TAG=${TAG}" >> $GITHUB_OUTPUT
79+ echo "TITLE=${TITLE}" >> $GITHUB_OUTPUT
7580 else
7681 echo "output.env not found; assuming changelog generation was skipped"
7782 echo "skip_release=true" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments