Files
modeling-app/scripts/get-nightly-changelog.sh

6 lines
272 B
Bash
Raw Normal View History

#!/bin/bash
echo "## What's Changed"
2024-12-05 06:33:19 -05:00
git log ${PREVIOUS_TAG}..HEAD --oneline --pretty=format:%s | grep -v Bump | awk '{print "- "toupper(substr($0,0,1))substr($0,2)}'
echo ""
2024-12-05 06:33:19 -05:00
echo "Full Changelog: https://github.com/KittyCAD/modeling-app/compare/${PREVIOUS_TAG}...${TAG}"