Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .git-cliff.toml

This file was deleted.

23 changes: 6 additions & 17 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-depth: 100

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -32,13 +32,6 @@ jobs:
with:
go-version: '1.21'

- name: Install git-cliff
run: |
curl -L https://github.com/orhun/git-cliff/releases/latest/download/git-cliff-x86_64-unknown-linux-gnu.tar.gz -o git-cliff.tar.gz
tar -xzf git-cliff.tar.gz
chmod +x git-cliff
./git-cliff --version

- name: Build Python packages
run: |
python -m build
Expand Down Expand Up @@ -87,14 +80,10 @@ jobs:
echo "version=v$VERSION" >> $GITHUB_OUTPUT
echo "Version extracted: $VERSION"

- name: Generate changelog
id: changelog
- name: Get PR body for changelog
id: pr_info
run: |
CHANGELOG=$(git-cliff --unreleased --tag ${{ steps.get_version.outputs.version }} -o -)
CHANGELOG="${CHANGELOG//'%'/'%25'}"
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
echo "changelog=$CHANGELOG" >> $GITHUB_OUTPUT
echo "body=${{ github.event.pull_request.body }}" >> $GITHUB_OUTPUT

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
Expand All @@ -118,9 +107,9 @@ jobs:

---

## 📝 Changelog | 更新日志
## 📝 Changes | 变更内容

${{ steps.changelog.outputs.changelog }}
${{ github.event.pull_request.body }}

---

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

# [0.4.4.4](https://github.com/MengHanLOVE1027/endstone-easybackuper/compare/v0.4.4.3...v0.4.4.4) (2026-03-29)
### Bug Fixes

* fix again ([f628d3f](https://github.com/MengHanLOVE1027/endstone-easybackuper/commit/f628d3fe9707630e6a9094ad98df3d8d05be5bdd)) [@梦涵LOVE](https://github.com/梦涵LOVE)



# [0.4.4.3](https://github.com/MengHanLOVE1027/endstone-easybackuper/compare/v0.4.4.2...v0.4.4.3) (2026-03-29)
### Testing

Expand Down
Loading