forked from bellwether/minerva
11 lines
313 B
YAML
11 lines
313 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
|
|
tags:
|
|
- autoscale
|