From 50a562155bbf787b31d9e0cf47f14657d9cb8b13 Mon Sep 17 00:00:00 2001 From: gyulaid Date: Sun, 27 Mar 2022 15:27:25 +0200 Subject: [PATCH] Drone CI initial commit --- .drone.yml | 32 ++++++++++++++++++++++++++++++++ LICENSE | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0d40c2b --- /dev/null +++ b/.drone.yml @@ -0,0 +1,32 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: static-test + image: alpine/flake8 + commands: + - python3 -m flake8 --ignore E501,W503 + +- name: build + image: python + commands: + - python3 -m pip install build + - python3 -m build alice-ci + +- name: publish + image: python + environment: + TWINE_PASSWORD: + from_secret: pypi_username + TWINE_USERNAME: + from_secret: pypi_token + commands: + - python3 -m pip install twine + - python3 -m twine upload alice-ci/dist/* + when: + branch: + - master + event: + exclude: + - pull_request \ No newline at end of file diff --git a/LICENSE b/LICENSE index 2071b23..c2f5393 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) +Copyright (c) 2022 Daniel Gyulai Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: