From 5c1acf669921a919d4628880a1ef472423779f5d Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Thu, 16 Jan 2025 16:32:37 +0100 Subject: [PATCH] debugging pipline --- .gitlab-ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5f2dbee..2a0319b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,13 +26,25 @@ build: script: - sed -i "s/###VERSION###/${GitVersion_MajorMinorPatch}a${GitVersion_BuildMetaData}/" src/optima35/__init__.py - cat src/optima35/__init__.py - - python3 -m pip install --upgrade pip build + - python3 -m pip install build - python3 -m build artifacts: paths: - dist/* expire_in: 1 day +#publish: +#stage: release +#image: python:3.9.21 +#tags: +#- gitlab-org-docker +#needs: +#- job: build +#artifacts: true +#script: +#- python3 -m pip install twine +#- python3 -m twine upload --repository testpypi dist/* + create_tag: extends: .git:create_tag stage: release