From 4c1648f12a03431c0c9ec5d77e8966a7ad4c8480 Mon Sep 17 00:00:00 2001
From: Max Drexler <mndrexler@wisc.edu>
Date: Fri, 19 Jul 2024 23:35:59 +0000
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 17 +++++------------
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3e78652..9053033 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -86,24 +86,17 @@ test::unit:
         coverage_format: cobertura
         path: ./coverage.xml
   coverage: /(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/
-
-deploy::build:
+  
+package::release:
   stage: deploy
   extends: .on-new-version
   before_script:
-      pip install build
+      pip install twine build
   script:
     - python -m build
+    - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi --verbose dist/*
   artifacts:
     expire_in: "1 day"
     paths:
       - ./dist/*.whl
-      - ./dist/*.tar.gz
-
-deploy::package::release:
-  stage: deploy
-  extends: .on-new-version
-  before_script:
-      pip install twine
-  script:
-    - TWINE_PASSWORD=${CI_JOB_TOKEN} TWINE_USERNAME=gitlab-ci-token python -m twine upload --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi --verbose dist/*
+      - ./dist/*.tar.gz
\ No newline at end of file
-- 
GitLab