access-azure-keyvault/.gitlab-ci.yml

20 lines
367 B
YAML
Raw Permalink Normal View History

2022-09-16 12:50:57 +02:00
stages:
2022-09-16 12:54:28 +02:00
- build
2022-09-16 12:50:57 +02:00
build:
2022-09-16 12:54:28 +02:00
image: python:3.10.7-bullseye
stage: build
tags:
- hottis
- linux
- docker
variables:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${PYPI_PUBLISHER_TOKEN}
script:
- python3 -m pip install --upgrade build
- python3 -m pip install --upgrade twine
- python3 -m build
- python3 -m twine upload dist/*
2022-09-16 12:50:57 +02:00