From 4f2f18422a82fc903af90b5bc6419d031501a5d3 Mon Sep 17 00:00:00 2001 From: JostTim <44769559+JostTim@users.noreply.github.com> Date: Mon, 8 Jan 2024 16:25:30 +0100 Subject: [PATCH] test ci/cd --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c3e6d5b..80a33fb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ image: python:3.11 # rules: # - if: $CI_COMMIT_BRANCH == "main" -StaticDocPages: +documentation: # stage: documentation script: - python -m pip install --upgrade pip @@ -19,7 +19,7 @@ StaticDocPages: paths: - ${CI_PROJECT_DIR}/public rules: - - if: ${CI_COMMIT_BRANCH} == "main" + - if: '${CI_COMMIT_BRANCH} == "main"' publish: # stage : publish @@ -29,6 +29,6 @@ publish: script: - pip install build twine - python -m build - - python -m twine upload --repository pipy dist/* + - python -m twine upload --repository pypi dist/* rules: - - if: ${CI_COMMIT_BRANCH} == "main" \ No newline at end of file + - if: '${CI_COMMIT_BRANCH} == "main"' \ No newline at end of file -- GitLab