chore: bump client dependencies (#64)

* chore: bump client dependencies

* docs: update changelog file

* docs: update changelog

* feat: craete separate changelog files
This commit is contained in:
2026-06-08 18:57:05 -03:00
committed by GitHub
parent a88a6788c6
commit 93efe09407
7 changed files with 226 additions and 110 deletions
+3 -1
View File
@@ -58,7 +58,9 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add server/pom.xml
DATE=$(date +'%Y-%m-%d')
python3 tools/promote-changelog.py "api-v${{ steps.version.outputs.version }}" "${DATE}" CHANGELOG-server.md
git add server/pom.xml CHANGELOG-server.md
git commit -m "chore: bump api version to ${{ steps.version.outputs.version }} [skip ci]"
git push
+22
View File
@@ -81,3 +81,25 @@ jobs:
git tag -a ${{ steps.version.outputs.tag }} -m "Release ${{ steps.version.outputs.tag }}"
git push origin ${{ steps.version.outputs.tag }}
- name: Promote changelog
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
DATE=$(date +'%Y-%m-%d')
TAG="${{ steps.version.outputs.tag }}"
for i in 1 2 3; do
git pull --rebase origin main
python3 tools/promote-changelog.py "${TAG}" "${DATE}" CHANGELOG-client.md
if git diff --quiet CHANGELOG-client.md; then
echo "No changelog changes to commit"
exit 0
fi
git add CHANGELOG-client.md
git commit -m "docs: promote [Unreleased] to ${TAG} [skip ci]"
git push && exit 0
git reset HEAD~1
sleep 5
done
echo "ERROR: Failed to push changelog after 3 attempts"
exit 1