Compare commits

..
3 Commits
Author SHA1 Message Date
bitbucket-pipelines 8b8b9337ac chore: bump version and update CHANGELOG.md [skip ci] 2026-02-10 23:39:27 +00:00
JonathanGitFlowandjt da8b27ce88 Merged in bugfix/add-build-step-to-pipeline (pull request #58)
bugfix: agrego paso de build al pipeline

Approved-by: Jonathan Teran
2026-02-10 23:38:32 +00:00
jt ade86f1350 bugfix: agrego paso de build al pipeline 2026-02-10 20:38:02 -03:00
2 changed files with 9 additions and 1 deletions
+7
View File
@@ -1,3 +1,10 @@
## v1.12.1 - 2026-02-10
- **bugfix**: agrego paso de build al pipeline [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (ade86f1)
---
## v1.12.0 - 2026-02-10 ## v1.12.0 - 2026-02-10
- **feature**: cambio pipelines para usar uv package manager [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (0f700b0) - **feature**: cambio pipelines para usar uv package manager [[jonathan.nerat](mailto:jonathan.nerat@gmail.com)] (0f700b0)
+2 -1
View File
@@ -4,10 +4,11 @@ pipelines:
branches: branches:
'main': 'main':
- step: - step:
name: "Tag main" name: "Tag and publish package"
caches: caches:
- pip - pip
script: script:
- pip install uv - pip install uv
- uv run git-flow tag --token=$BEARER - uv run git-flow tag --token=$BEARER
- uv build
- uv publish --token=$PYPI_TOKEN - uv publish --token=$PYPI_TOKEN