diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 851a1f09ab2480b9a4b149a9e6b7380a9c9204a0..3fff7c73e50d85b1f7b9ec6a9f5987838d01f0c3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,3 +24,14 @@ test:
     paths:
       - dist/*.tar.gz
       - wheelhouse/*
+
+publish-job:
+  stage: deploy
+  rules:
+    - if: $CI_COMMIT_TAG
+  dependencies:
+    - test
+  script:
+    - python -m pip install -U twine
+
+    - twine upload -u __token__ -p "$PYPI_TOKEN" dist/*.tar.gz wheelhouse/*