based/.gitlab-ci.yml

13 lines
251 B
YAML

stages:
- package
package:
stage: package
image: python:3.10-alpine3.16
script:
- pip install wheel
- pip wheel . -w wheels
- twine upload dist/*
artifacts:
paths:
- "wheels/based*.whl"