This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/.drone.yml

33 lines
600 B
YAML
Raw Normal View History

2020-04-09 08:27:42 +00:00
kind: pipeline
name: default
2020-12-08 15:45:02 +00:00
type: docker
2020-04-09 08:27:42 +00:00
steps:
2020-12-08 16:17:24 +00:00
- name: flake8
2022-10-26 14:03:41 +00:00
image: python
2020-12-08 16:17:24 +00:00
commands:
- pip install flake8
- flake8 pynyaata --ignore=E501
2020-04-09 08:27:42 +00:00
- name: docker
image: plugins/docker
settings:
repo: xefir/pynyaata
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
2020-04-10 08:08:22 +00:00
- name: pypi
image: plugins/pypi
settings:
username:
2020-04-25 09:04:50 +00:00
from_secret: pypi_username
2020-04-10 08:08:22 +00:00
password:
2020-04-25 09:04:50 +00:00
from_secret: pypi_password
2020-12-08 15:45:02 +00:00
when:
branch:
- master
2021-04-15 07:13:07 +00:00
event:
- push
2020-12-08 15:45:02 +00:00