Compare commits

...
2 Commits
Author SHA1 Message Date
jt 7f7dd7b538 Merge pull request 'bugfix: add fetch-tags: true' (#7) from feature/change-flow-settings-in-local-config into main
Publish to PyPI / Publish-to-PyPI (push) Failing after 14s
Reviewed-on: #7
2026-07-29 14:41:06 +00:00
Jonathan Teran Carballo adcb53156a bugfix: add fetch-tags: true 2026-07-29 11:40:54 -03:00
+4
View File
@@ -10,6 +10,8 @@ jobs:
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v7 uses: actions/checkout@v7
with:
fetch-tags: true
- name: Configure git - name: Configure git
run: | run: |
@@ -30,6 +32,8 @@ jobs:
echo "Commit count: $(git rev-list --count main)" echo "Commit count: $(git rev-list --count main)"
echo "Tags available:" echo "Tags available:"
git tag git tag
echo "Remote tags available:"
git ls-remote --tags
- name: Bump version - name: Bump version
run: | run: |