25 lines
537 B
YAML
25 lines
537 B
YAML
image: python:3.12
|
|
|
|
pipelines:
|
|
branches:
|
|
'dev':
|
|
- step:
|
|
name: "Tag dev"
|
|
caches:
|
|
- pip
|
|
script:
|
|
- cd $BITBUCKET_CLONE_DIR
|
|
- pip install --upgrade pip
|
|
- pip install .
|
|
- git-flow tag $BEARER
|
|
'main':
|
|
- step:
|
|
name: "Tag main"
|
|
caches:
|
|
- pip
|
|
script:
|
|
- cd $BITBUCKET_CLONE_DIR
|
|
- pip install --upgrade pip
|
|
- pip install .
|
|
- git-flow tag $BEARER
|