mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 08:36:11 +02:00
fix: Update git log command to reference HEAD for more accurate commit history
This commit is contained in:
@@ -181,9 +181,9 @@ jobs:
|
||||
echo "### Commits"
|
||||
echo ""
|
||||
if [ -n "$PREV_TAG" ]; then
|
||||
git log "${PREV_TAG}..${TAG}" --pretty=format:"- %s (%h)" --no-merges
|
||||
git log "${PREV_TAG}..HEAD" --pretty=format:"- %s (%h)" --no-merges
|
||||
else
|
||||
git log "${TAG}" --pretty=format:"- %s (%h)" --no-merges
|
||||
git log HEAD --pretty=format:"- %s (%h)" --no-merges
|
||||
fi
|
||||
echo ""
|
||||
echo ""
|
||||
|
||||
Reference in New Issue
Block a user