From bd91771a5fb4a68e6773d3b058b2b0140157d710 Mon Sep 17 00:00:00 2001 From: Vitaly Chekryzhev <13hakta@gmail.com> Date: Wed, 8 Dec 2021 12:53:35 +0000 Subject: [PATCH] Add CI/CD --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1385c56 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +stages: + - build + +build: + stage: build + image: python:3-alpine + artifacts: + paths: + - dist/*.whl + script: + - python setup.py bdist_wheel