forked from bellwether/minerva
9 lines
289 B
YAML
9 lines
289 B
YAML
image: python:latest
|
|
|
|
run:
|
|
script:
|
|
- pip install poetry
|
|
- poetry build
|
|
- poetry config repositories.gitlab ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi
|
|
- poetry config http-basic.gitlab gitlab-ci-token "$CI_JOB_TOKEN"
|
|
- poetry publish --repository gitlab
|