Add GitlabCI config
This commit is contained in:
parent
64b9cf408b
commit
c37c93d0d4
1 changed files with 13 additions and 0 deletions
13
.gitlab-ci.yml
Normal file
13
.gitlab-ci.yml
Normal 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"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue