Skip to content
Snippets Groups Projects
Commit 54fc47e1 authored by Reinder Kraaij's avatar Reinder Kraaij :eye:
Browse files

remove unneeded steps

parent 345c1c28
No related branches found
No related tags found
No related merge requests found
Pipeline #109193 passed
Pipeline: sid

#109194

    ...@@ -12,8 +12,6 @@ default: ...@@ -12,8 +12,6 @@ default:
    stages: stages:
    - prepare - prepare
    - lint - lint
    # check if this needs to be a separate step
    # - build_extensions
    - test - test
    - package - package
    - images - images
    ...@@ -140,41 +138,6 @@ publish_on_gitlab: ...@@ -140,41 +138,6 @@ publish_on_gitlab:
    python -m twine upload \ python -m twine upload \
    --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/* --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*
    publish_on_test_pypi:
    stage: publish
    environment: pypi-test
    needs:
    - package_files
    when: manual
    rules:
    - if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_PROTECTED == "true"'
    script:
    - echo "run twine for test pypi"
    # - |
    # TWINE_PASSWORD=${PIPY_TOKEN} \
    # TWINE_USERNAME=${PIPY_USERNAME} \
    # TODO: replace URL with a pipy URL
    # python -m twine upload \
    # --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*
    - exit 1
    publish_on_pypi:
    stage: publish
    environment: pypi
    needs:
    - package_files
    when: manual
    rules:
    - if: '$CI_COMMIT_TAG && $CI_COMMIT_REF_PROTECTED == "true"'
    script:
    - echo "run twine for pypi"
    # - |
    # TWINE_PASSWORD=${PIPY_TOKEN} \
    # TWINE_USERNAME=${PIPY_USERNAME} \
    # TODO: replace URL with a pipy URL
    # python -m twine upload \
    # --repository-url ${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi dist/*
    - exit 1
    publish_to_readthedocs: publish_to_readthedocs:
    stage: publish stage: publish
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment