Skip to content
Snippets Groups Projects
Commit 5d05704b authored by Michael Loipführer's avatar Michael Loipführer
Browse files

push releases to pypi

parent 479a014f
No related branches found
Tags 1.0.6
No related merge requests found
Pipeline #1257 failed
......@@ -7,8 +7,8 @@ stages:
- release
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic"
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic"
all_tests:
stage: test
......@@ -105,4 +105,17 @@ release_job:
- name: "wahlfang-${CI_COMMIT_TAG}.tar.gz"
url: "${PACKAGE_REGISTRY_URL}/${CI_COMMIT_TAG}/wahlfang.tar.gz"
# TODO: automatically push to pypi.org when generating a release
\ No newline at end of file
publish_job:
stage: release
needs:
- job: package
artifacts: true
rules:
- if: $CI_COMMIT_TAG # only run when we publish a new tag
before_script:
- pip3 install virtualenv
- virtualenv -q .venv
- source .venv/bin/activate
- pip install -U twine
script:
- python -m twine upload dist/*
\ No newline at end of file
......@@ -53,6 +53,14 @@ $ python3 wahlfang/manage.py migrate
```
Don't forget to add the new migration file to git. If the CI pipeline fails this is most likely the reason for it.
## Releasing
The release process is automated in the gitlab ci.
To make a new release bump the package version number in `wahlfang.__init__.py` and tag the commit with the same version
number. The CI will then build the package, publish it as a gitlab release and push it to pypi.
The pypi credentials must be set in the gitlab CI settings via the env variables `TWINE_USERNAME` and `TWINE_PASSWORD`.
## Development References
- Django 3: https://docs.djangoproject.com/en/3.2/
__version__ = '1.0.1'
__version__ = '1.0.2'
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