File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,16 +56,18 @@ jobs:
5656 LAST_TAG=$(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || echo "")
5757 if [[ -n "$LAST_TAG" ]]; then
5858 CHANGELOG=$(git log --pretty=format:"- %s (%h)" $LAST_TAG..HEAD)
59+ COMPARE_LINK="**Full Changelog**: https://github.com/${{ github.repository }}/compare/$LAST_TAG...${{ steps.get_version.outputs.VERSION }}"
5960 else
6061 CHANGELOG=$(git log --pretty=format:"- %s (%h)" --max-count=20)
62+ COMPARE_LINK="_This is the first release._"
6163 fi
6264
6365 cat > changelog.md << EOF
6466 ## What's Changed
6567
6668 $CHANGELOG
6769
68- **Full Changelog**: https://github.com/${{ github.repository }}/compare/$LAST_TAG...${{ steps.get_version.outputs.VERSION }}
70+ $COMPARE_LINK
6971 EOF
7072
7173 - name : Create Release
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.21 )
22
33project (laya
4- VERSION 0.1.2
4+ VERSION 0.1.3
55 DESCRIPTION "Modern C++20 wrapper for SDL3"
66 LANGUAGES CXX
77)
You can’t perform that action at this time.
0 commit comments