Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wahlfang
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
stustanet
wahlfang
Commits
5d05704b
Commit
5d05704b
authored
3 years ago
by
Michael Loipführer
Browse files
Options
Downloads
Patches
Plain Diff
push releases to pypi
parent
479a014f
No related branches found
Branches containing commit
Tags
1.0.6
Tags containing commit
No related merge requests found
Pipeline
#1257
failed
3 years ago
Stage: test
Stage: package
Stage: upload
Stage: release
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+16
-3
16 additions, 3 deletions
.gitlab-ci.yml
README.md
+8
-0
8 additions, 0 deletions
README.md
wahlfang/__init__.py
+1
-1
1 addition, 1 deletion
wahlfang/__init__.py
with
25 additions
and
4 deletions
.gitlab-ci.yml
+
16
−
3
View file @
5d05704b
...
...
@@ -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
This diff is collapsed.
Click to expand it.
README.md
+
8
−
0
View file @
5d05704b
...
...
@@ -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/
This diff is collapsed.
Click to expand it.
wahlfang/__init__.py
+
1
−
1
View file @
5d05704b
__version__
=
'
1.0.
1
'
__version__
=
'
1.0.
2
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment