django-dbsettings/.gitlab-ci.yml
Kumi 2adcd09322
Added CI pipeline for testing and publishing
Introduced a GitLab CI configuration to automate the testing and publishing of the package. The pipeline runs tests and, on tagged commits, publishes the package to PyPI using stored credentials, ensuring a streamlined release process.
2023-12-22 12:15:30 +01:00

21 lines
No EOL
377 B
YAML

image: python:3.10
stages:
- test
- publish
before_script:
- python -V
- python -m venv venv
- source venv/bin/activate
- pip install -U pip
- pip install .
publish:
stage: publish
script:
- pip install -U hatchling twine build
- python -m build .
- python -m twine upload --username __token__ --password ${PYPI_TOKEN} dist/*
only:
- tags