28 lines
586 B
YAML
28 lines
586 B
YAML
|
image: python:3.10
|
||
|
|
||
|
stages:
|
||
|
# - test
|
||
|
- publish
|
||
|
|
||
|
before_script:
|
||
|
- python -V
|
||
|
- python -m venv venv
|
||
|
- source venv/bin/activate
|
||
|
- pip install -U pip
|
||
|
- pip install .
|
||
|
# - echo "[KeyDelivery]" > config.ini
|
||
|
# - echo "key = ${KEYDELIVERY_KEY}" >> config.ini
|
||
|
# - echo "secret = ${KEYDELIVERY_SECRET}" >> config.ini
|
||
|
|
||
|
#test:
|
||
|
# stage: test
|
||
|
# script: python -m unittest test.py
|
||
|
|
||
|
publish:
|
||
|
stage: publish
|
||
|
script:
|
||
|
- pip install -U hatchling twine build
|
||
|
- python -m build .
|
||
|
- python -m twine upload --username __token__ --password ${PYPI_TOKEN} dist/*
|
||
|
only:
|
||
|
- tags
|