Skip to content
Snippets Groups Projects
Commit 9fa33bb7 authored by Bartek Wrona's avatar Bartek Wrona
Browse files

wheel deployment jobs supplemented by optional PYPROJECT_DIR usage

parent 5b496aea
No related branches found
No related tags found
1 merge request!32Python templates improvements
Pipeline #79683 passed
......@@ -147,10 +147,10 @@ variables:
script:
- echo -e "${TXT_BLUE}Deploying python wheel to the GitLab PyPI registry...${TXT_CLEAR}"
- ls -al
- poetry version
- poetry config repositories.gitlab "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi"
- poetry config http-basic.gitlab gitlab-ci-token "${CI_JOB_TOKEN}"
- poetry publish --skip-existing --repository gitlab
- poetry -C "${PYPROJECT_DIR}" version
- poetry -C "${PYPROJECT_DIR}" config repositories.gitlab "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi"
- poetry -C "${PYPROJECT_DIR}" config http-basic.gitlab gitlab-ci-token "${CI_JOB_TOKEN}"
- poetry -C "${PYPROJECT_DIR}" publish --skip-existing --repository gitlab
.deploy_wheel_to_pypi_template:
extends: .deploy_wheel_base
......@@ -163,8 +163,8 @@ variables:
script:
- echo -e "${TXT_BLUE}Deploying python wheel to the official PyPI registry...${TXT_CLEAR}"
- ls -al
- poetry version
- poetry config pypi-token.pypi "${PYPI_AUTHORIZATION_TOKEN}"
- poetry publish --skip-existing
- poetry -C "${PYPROJECT_DIR}" version
- poetry -C "${PYPROJECT_DIR}" config pypi-token.pypi "${PYPI_AUTHORIZATION_TOKEN}"
- poetry -C "${PYPROJECT_DIR}" publish --skip-existing
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<| DEPLOY |<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment