Skip to content

Commit

Permalink
test #GITBUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
unitycoder authored Jan 20, 2025
1 parent 61e8412 commit ceae82a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,12 @@ jobs:
if [ "$PREV_TAG" = "none" ]; then
echo "No previous tag found, listing all commits"
COMMITS=$(git log --pretty=format:"* %s" --no-merges)
else:
else
echo "Previous tag: $PREV_TAG"
# List commits since last tag
COMMITS=$(git log $PREV_TAG..HEAD --pretty=format:"* %s" --no-merges)
fi
# Save commits to the environment
echo "commits=$COMMITS" >> $GITHUB_ENV
# Create a release
Expand Down

0 comments on commit ceae82a

Please sign in to comment.