Skip to content

Commit

Permalink
Merge pull request #3 from origadmin/dev
Browse files Browse the repository at this point in the history
ci(workflow): improve changelog generation in release workflow
  • Loading branch information
godcong authored Nov 28, 2024
2 parents ea9fb6f + b80d71c commit 1a9e42d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release_and_tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,17 @@ jobs:
id: generate_changelog
run: |
LATEST_RELEASE=${{ steps.get_latest_release.outputs.LATEST_RELEASE }}
echo "LATEST_RELEASE is $LATEST_RELEASE"
echo "# Changelog" > changelog.txt
if [[ -z "$LATEST_RELEASE" ]]; then
# If there's no previous release, get only the current commit's log
if [[ -z "$LATEST_RELEASE" || "$LATEST_RELEASE" == "null" ]]; then
# If there's no previous release, get only the current commit log
git config --global core.pager cat
# git log --pretty=format:"* %s **by** @%an"
git log --pretty=format:"* %s **by** @%an" >> changelog.txt
else
# Get all submission information since the last release
CHANGELOG=$(git log "$LATEST_RELEASE"..HEAD --pretty=format:"* %s **by** @%an")
git log "$LATEST_RELEASE"..HEAD --pretty=format:"* %s **by** @%an" >> changelog.txt
CHANGELOG=$(git log "$LATEST_RELEASE"..HEAD -- --pretty=format:"* %s **by** @%an")
git log "$LATEST_RELEASE"..HEAD -- --pretty=format:"* %s **by** @%an" >> changelog.txt
fi
- name: Create release
Expand Down

0 comments on commit 1a9e42d

Please sign in to comment.