Skip to content

Commit

Permalink
Merge pull request #4 from origadmin/dev
Browse files Browse the repository at this point in the history
Merge dev into main
  • Loading branch information
godcong authored Nov 28, 2024
2 parents 1a9e42d + 1462e51 commit cd051bc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release_and_tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,16 @@ 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" || "$LATEST_RELEASE" == "null" ]]; then
# If there's no previous release, get only the current commit log
# If there's no previous release, get only the current commit's 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 cd051bc

Please sign in to comment.