Divent/.drone.yml

35 lines
662 B
YAML
Raw Normal View History

2022-05-08 14:02:19 +00:00
kind: pipeline
name: default
type: docker
steps:
- name: lint
2022-10-26 14:02:48 +00:00
image: python:3.8
2022-05-08 14:02:19 +00:00
commands:
- pip install poetry
2022-05-08 14:02:19 +00:00
- poetry install
- 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-10-26 14:02:48 +00:00
image: python:3.8
2022-05-08 14:02:19 +00:00
commands:
- pip install poetry
2022-05-08 14:02:19 +00:00
- poetry publish --build
environment:
POETRY_PYPI_TOKEN_PYPI:
from_secret: pypi_token
when:
event: tag