mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-06 23:34:13 +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 "### Commits"
|
||||||
echo ""
|
echo ""
|
||||||
if [ -n "$PREV_TAG" ]; then
|
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
|
else
|
||||||
git log "${TAG}" --pretty=format:"- %s (%h)" --no-merges
|
git log HEAD --pretty=format:"- %s (%h)" --no-merges
|
||||||
fi
|
fi
|
||||||
echo ""
|
echo ""
|
||||||
echo ""
|
echo ""
|
||||||
|
|||||||
Reference in New Issue
Block a user