From 3604dfaed5cde00afe710e21984c074f61327966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Thu, 24 Jun 2021 21:25:44 +0200 Subject: [PATCH] Add CI --- drone.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..d601812 --- /dev/null +++ b/drone.yml @@ -0,0 +1,22 @@ +--- +kind: pipeline +type: docker +name: build and publish + +steps: +- name: build + image: python + commands: + - python -m build +- name: publish + image: plugins/pypi + settings: + username: + from_secret: pypi_username + password: + from_secret: pypi_password +trigger: + branch: + - main + event: + - tag