You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-20 07:26:18 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 483a2918d3 | |||
| 3208b71ffc | |||
| 69359f6fea | |||
| 22825d1d69 |
@@ -50,25 +50,22 @@ jobs:
|
|||||||
git commit -m "🆙 Bump version to ${{ steps.bump.outputs.new_version }} [skip ci]"
|
git commit -m "🆙 Bump version to ${{ steps.bump.outputs.new_version }} [skip ci]"
|
||||||
git push origin HEAD:main
|
git push origin HEAD:main
|
||||||
|
|
||||||
- name: Generate release notes from commits
|
- name: Generate release notes from latest commit
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
|
env:
|
||||||
|
NEW_TAG: v${{ steps.bump.outputs.new_version }}
|
||||||
|
TRIGGER_SHA: ${{ github.sha }}
|
||||||
run: |
|
run: |
|
||||||
PREV_TAG=$(git tag --sort=-creatordate | head -n1 || true)
|
PREV_TAG=$(git tag --sort=-creatordate | head -n1 || true)
|
||||||
NEW_TAG="v${{ steps.bump.outputs.new_version }}"
|
|
||||||
if [ -z "$PREV_TAG" ]; then
|
|
||||||
RANGE="HEAD"
|
|
||||||
COMPARE_LINE=""
|
|
||||||
else
|
|
||||||
RANGE="${PREV_TAG}..HEAD"
|
|
||||||
COMPARE_LINE="**Full Changelog**: https://github.com/${{ github.repository }}/compare/${PREV_TAG}...${NEW_TAG}"
|
|
||||||
fi
|
|
||||||
{
|
{
|
||||||
echo "## What's Changed in ${NEW_TAG}"
|
echo "## What's Changed"
|
||||||
echo ""
|
echo ""
|
||||||
git log --no-merges --pretty=format:"### %s%n%n%b%n---" $RANGE
|
git log -1 --pretty=format:"### %s%n%n%b" "$TRIGGER_SHA"
|
||||||
echo ""
|
echo ""
|
||||||
echo ""
|
echo ""
|
||||||
[ -n "$COMPARE_LINE" ] && echo "$COMPARE_LINE"
|
if [ -n "$PREV_TAG" ]; then
|
||||||
|
echo "**Full Changelog**: https://github.com/${{ github.repository }}/compare/${PREV_TAG}...${NEW_TAG}"
|
||||||
|
fi
|
||||||
} > release_notes.md
|
} > release_notes.md
|
||||||
cat release_notes.md
|
cat release_notes.md
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>com.eu.habbo</groupId>
|
<groupId>com.eu.habbo</groupId>
|
||||||
<artifactId>Habbo</artifactId>
|
<artifactId>Habbo</artifactId>
|
||||||
<version>4.1.2</version>
|
<version>4.1.3</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
|||||||
Reference in New Issue
Block a user