From 4f7427c80f0552fdc26cd9d16b33a79a6e979ca1 Mon Sep 17 00:00:00 2001 From: Anson Biggs Date: Mon, 20 Jan 2020 20:52:54 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .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..4dd2f54 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +before_script: + - python -V # Print out python version for debugging + - pip install setuptools wheel + +run: + script: + - python setup.py bdist_wheel + - python -m twine upload dist/* + - echo __token__ + - echo $PYPI_TOKEN +