24 lines
362 B
YAML
24 lines
362 B
YAML
stages:
|
|
- test
|
|
- pypi-twine
|
|
|
|
test:
|
|
stage: test
|
|
tags: ["build"]
|
|
script: make test
|
|
artifacts:
|
|
paths:
|
|
- env.vanilla
|
|
expire_in: 1 hour
|
|
|
|
pypi-twine:
|
|
stage: pypi-twine
|
|
tags:
|
|
- build
|
|
only:
|
|
- tags
|
|
script:
|
|
- pip install --upgrade pip
|
|
- pip install twine
|
|
- python3 setup.py sdist bdist_wheel
|
|
- twine upload dist/*
|