13 lines
244 B
YAML
13 lines
244 B
YAML
stages:
|
|
- package
|
|
|
|
package:
|
|
stage: package
|
|
image: 3.10-alpine3.16
|
|
script:
|
|
- pip install wheel
|
|
- pip wheel . -w wheels
|
|
- twine upload dist/*
|
|
artifacts:
|
|
paths:
|
|
- "wheels/based*.whl"
|