2022-07-28 12:58:44 +00:00
|
|
|
---
|
2020-08-20 14:18:47 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2022-07-28 12:58:44 +00:00
|
|
|
- name: Tests
|
|
|
|
image: python:3.10
|
|
|
|
environment:
|
|
|
|
PyPI_TOKEN: pypi_token
|
|
|
|
commands:
|
|
|
|
- python -m pip install --upgrade pip
|
|
|
|
- python -m pip install poetry
|
|
|
|
- poetry install
|
|
|
|
- poetry run pytest
|
|
|
|
|
2020-08-20 14:18:47 +00:00
|
|
|
- name: Publish
|
2022-07-28 12:58:44 +00:00
|
|
|
image: python:3.10
|
|
|
|
environment:
|
|
|
|
PyPI_TOKEN: pypi_token
|
|
|
|
commands:
|
|
|
|
- python -m pip install --upgrade pip
|
|
|
|
- python -m pip install poetry
|
|
|
|
- poetry config pypi-token.pypi $PyPI_TOKEN
|
|
|
|
- poetry publish --build
|
2020-08-20 14:27:17 +00:00
|
|
|
when:
|
|
|
|
event: tag
|