File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
.github/templates/github/semantic_release Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -155,11 +155,12 @@ runs:
155155 id : export-released-notes
156156 shell : bash
157157 run : |
158- if [ "${{ steps.semantic-release.outputs.new_release_notes }}" != "" ]; then
159- echo "Release notes captured successfully"
160- else
161- echo "No release notes available"
162- fi
158+ # Just echo the success status - no need to parse the notes again
159+ # since they're already captured in the semantic-release step
160+ echo "Release notes already captured in previous step"
161+
162+ # Set the output to match the expected structure
163+ echo "new_release_notes=Release notes available in CHANGELOG.md" >> $GITHUB_OUTPUT
163164
164165 - name : " Release summary"
165166 if : steps.semantic-release.outputs.new_release_published == 'true'
You can’t perform that action at this time.
0 commit comments