From cea27a0f44fab1159cc2e85c1e71a2f09655555a Mon Sep 17 00:00:00 2001 From: Maja Jablonska <majajjablonska@gmail.com> Date: Mon, 19 Feb 2024 20:48:20 +1100 Subject: [PATCH] Simplify CI --- .gitlab-ci.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b050fef..0413e8c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,19 +1,14 @@ -image: clarinpl/python:3.8 +image: python:latest -cache: - paths: - - .tox stages: - publish pypi_publish: - before_script: - - pip install build twine - - pip install urllib3==1.26.6 only: - - main + - main stage: publish script: + - pip install build twine - python -m build - python -m twine upload --skip-existing -- GitLab