ci script and ignore file
This commit is contained in:
parent
9f91c345fa
commit
481a173d2a
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
src/access_azure_keyvault.egg-info/
|
||||
dist/
|
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
@ -0,0 +1,19 @@
|
||||
stages:
|
||||
- build
|
||||
|
||||
build:
|
||||
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/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user