https://gitlab.inria.fr/jrye/mlflow-extra.git
Revision 9920265637b1c8c51727a9604609fc21cb052dcd authored by Jan-Michael Rye on 20 October 2023, 11:35:46 UTC, committed by Jan-Michael Rye on 20 October 2023, 11:35:46 UTC
1 parent 8c0ba68
Tip revision: 9920265637b1c8c51727a9604609fc21cb052dcd authored by Jan-Michael Rye on 20 October 2023, 11:35:46 UTC
Register pip package
Register pip package
Tip revision: 9920265
.gitlab-ci.yml
pages:
artifacts:
paths:
- public
image: sphinxdoc/sphinx
only:
- main
script:
- pip install -r doc/requirements.txt
- sphinx-build -b html doc/source public
stage: deploy
tags: &id001
- ci.inria.fr
- linux
- small
register_pip_pkg:
image: python:latest
script:
- pip install build twine
- 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
dist/*
stage: deploy
tags: *id001
release_job:
image: registry.gitlab.com/gitlab-org/release-cli:latest
release:
description: Release $CI_COMMIT_TAG
tag_name: $CI_COMMIT_TAG
rules:
- if: $CI_COMMIT_TAG
script:
- echo "running release_job"
stage: release
tags: *id001
stages:
- release
- deploy

Computing file changes ...