2022-05-08 14:02:19 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
type: docker
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: lint
|
2022-09-09 21:17:29 +00:00
|
|
|
image: fnndsc/python-poetry
|
2022-05-08 14:02:19 +00:00
|
|
|
commands:
|
|
|
|
- poetry install
|
2022-09-08 17:04:00 +00:00
|
|
|
- poetry run flake8 .
|
2022-05-08 14:02:19 +00:00
|
|
|
- poetry run mypy .
|
|
|
|
- poetry run djlint .
|
|
|
|
|
|
|
|
- name: docker
|
|
|
|
image: plugins/docker
|
|
|
|
settings:
|
|
|
|
repo: xefir/divent
|
|
|
|
auto_tag: true
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
|
|
|
|
- name: publish
|
2022-09-09 21:17:29 +00:00
|
|
|
image: fnndsc/python-poetry
|
2022-05-08 14:02:19 +00:00
|
|
|
commands:
|
|
|
|
- poetry publish --build
|
|
|
|
environment:
|
|
|
|
POETRY_PYPI_TOKEN_PYPI:
|
|
|
|
from_secret: pypi_token
|
|
|
|
when:
|
|
|
|
event: tag
|