based/.gitlab-ci.yml

11 lines
193 B
YAML

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