minitor/.drone.yml

22 lines
382 B
YAML
Raw Normal View History

workspace:
base: /app
path: .
pipeline:
2018-04-12 01:16:26 +00:00
test:
image: python:3
commands:
2018-04-14 04:25:26 +00:00
- make test-env test
2018-04-12 01:16:26 +00:00
push_to_pypi:
image: python:3
commands:
2018-04-14 04:25:26 +00:00
- make build-env upload-test
2018-04-12 01:16:26 +00:00
secrets:
- source: PYPI_USERNAME
target: TWINE_USERNAME
- source: PYPI_PASSWORD
target: TWINE_PASSWORD
when:
event: tag
branch: master