*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects
Commit 3d17bc92 authored by Moser, Maximilian's avatar Moser, Maximilian
Browse files

Add GitLab CI/CD for release

parent 3d9cf4b6
Branches
Tags
1 merge request!2Initial implementation for the VRE-Repository-Connector
**.pyc
**/__pycache__
# pypi package builds
dist/**
# vim: ts=2
pypi-release:
rules:
- if: '$CI_COMMIT_TAG =~ /^v\d+/'
script:
- pip3 install --upgrade pip build twine check-manifest
- rm -f dist/*
- python3 -m check_manifest
- python3 -m build
- python3 -m twine check dist/*
- TWINE_USERNAME=${PYPI_USER} TWINE_PASSWORD=${PYPI_PASSWORD} python3 -m twine upload --skip-existing --non-interactive dist/*
exclude MANIFEST.in
exclude poetry.lock
exclude .gitlab-ci.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment