Add GitlabCI config

This commit is contained in:
Andrew 2023-03-12 01:09:09 +07:00
parent 64b9cf408b
commit c37c93d0d4

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
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"