Skip to content

Commit

Permalink
ci: step summary
Browse files Browse the repository at this point in the history
  • Loading branch information
scarf005 committed Mar 16, 2024
1 parent eb0ff02 commit 120324d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,17 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- run: |
CHANGELOG=$(cat << EOF
${{ steps.build_changelog.outputs.changelog }}
EOF
)
echo "changelog:" >> "$GITHUB_STEP_SUMMARY"
while IFS= read -r line; do
echo " - $line" >> "$GITHUB_STEP_SUMMARY"
done <<< "$CHANGELOG"
- name: Create release
if: ${{ steps.tag_check.outputs.exists == 'false' }}
id: create_release
Expand Down

0 comments on commit 120324d

Please sign in to comment.