Merged in bugfix/pipeline-run-tag (pull request #18)

bugfix: pipeline run tag

Approved-by: Jonathan Teran
This commit is contained in:
JonathanGitFlow
2025-11-05 00:00:28 +00:00
committed by jt
3 changed files with 23 additions and 4 deletions
+13
View File
@@ -1,3 +1,16 @@
## Martes, 4 de Noviembre de 2025, 20:59
- Autor: [Jonathan Teran Carballo](mailto:jonathan.nerat@gmail.com)
- Rama: `bugfix/pipeline-run-tag`
### Commits
- **bugfix**: cambio script de build para ejecutar git-flow tag (34b07ab)
- bitbucket-pipelines.yml (M)
- pyproject.toml (M)
---
## Lunes, 3 de Noviembre de 2025, 21:54 ## Lunes, 3 de Noviembre de 2025, 21:54
- Autor: [Jonathan Teran Carballo](mailto:jonathan.nerat@gmail.com) - Autor: [Jonathan Teran Carballo](mailto:jonathan.nerat@gmail.com)
+8 -2
View File
@@ -5,14 +5,20 @@ pipelines:
'dev': 'dev':
- step: - step:
name: "Tag dev" name: "Tag dev"
caches:
- pip
script: script:
- cd $BITBUCKET_CLONE_DIR - cd $BITBUCKET_CLONE_DIR
- pip install --upgrade pip
- pip install . - pip install .
- ./src/git_flow/main.py tag $BEARER - git-flow tag $BEARER
'main': 'main':
- step: - step:
name: "Tag main" name: "Tag main"
caches:
- pip
script: script:
- cd $BITBUCKET_CLONE_DIR - cd $BITBUCKET_CLONE_DIR
- pip install --upgrade pip
- pip install . - pip install .
- ./src/git_flow/main.py tag $BEARER - git-flow tag $BEARER
+2 -2
View File
@@ -1,6 +1,6 @@
[build-system] [build-system]
requires = ["hatchling >= 1.26"] requires = ["setuptools >= 61.0"]
build-backend = "hatchling.build" build-backend = "setuptools.build_meta"
[project] [project]
name = "git-flow" name = "git-flow"