fime/.gitlab-ci.yml

34 lines
655 B
YAML
Raw Normal View History

image: python:3.10
2022-09-21 21:53:45 +00:00
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
2022-09-21 21:58:23 +00:00
PIPENV_VENV_IN_PROJECT: 1
2022-09-21 21:53:45 +00:00
cache:
paths:
- .cache/pip
2022-09-21 21:58:23 +00:00
- .venv/
2022-09-21 21:53:45 +00:00
package_pip:
stage: build
script:
- python --version
- pip install pipenv build
2022-09-21 21:56:18 +00:00
- pipenv sync --dev
2022-09-21 21:53:45 +00:00
- pipenv run python -m build -w
artifacts:
paths:
- dist/*.whl
2022-09-21 22:10:31 +00:00
release_job:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
rules:
- if: $CI_COMMIT_TAG
script:
- echo "Running the release job."
release:
tag_name: $CI_COMMIT_TAG
name: 'Release $CI_COMMIT_TAG'
description: 'Release created using the release-cli.'