From f05582b50f7eec6bd6d71140f26e1b6c3919c93e Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Wed, 29 Jul 2026 10:53:43 -0300 Subject: [PATCH] feature: show commit count and list tags on workflow --- .gitea/workflows/publish-pypi.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/publish-pypi.yaml b/.gitea/workflows/publish-pypi.yaml index 803745c..0010233 100644 --- a/.gitea/workflows/publish-pypi.yaml +++ b/.gitea/workflows/publish-pypi.yaml @@ -28,6 +28,12 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v8.3.2 + - name: Count commits + run: | + echo "Commit count: $(git rev-list --count main)" + echo "Tags available:" + git tag + - name: Bump version run: | uv run git-flow tag --token="${{ secrets.GITEA_TOKEN }}"