diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..3388383 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: python:3.11-alpine + +stages: + - deploy + +before_script: + - pip install twine + - python setup.py sdist + +deploy_production: + stage: deploy + variables: + TWINE_USERNAME: $USER_NAME + TWINE_PASSWORD: $API_KEY + script: + - twine upload dist/* + only: + - tags \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index 7906f53..f85cebf 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -global-include *.txt *.png *.jpg \ No newline at end of file +global-include *.txt *.png *.jpg *.yaml *.yml \ No newline at end of file