diff --git a/.packwizignore b/.packwizignore index 8fc3fb7..206e739 100644 --- a/.packwizignore +++ b/.packwizignore @@ -1,2 +1,3 @@ .gitea/ README.md +release-notes.sh diff --git a/release-notes.sh b/release-notes.sh new file mode 100755 index 0000000..9055fe7 --- /dev/null +++ b/release-notes.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +current="$(git describe --abbrev=0)" +last="$(git describe HEAD~ --abbrev=0)" +cat << EOF +Changes: +- + +**Full Changelog:** [\`$current...$last\`](https://gitea.protogen.io/nullbite/fabric-lite/compare/$current...$last) +EOF