Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
api-client-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
funkwhale
api-client-python
Merge requests
!2
Resolve "Publish to pypi"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Publish to pypi"
1-publish-to-pypi
into
main
Overview
0
Commits
4
Pipelines
5
Changes
2
Merged
Georg Krause
requested to merge
1-publish-to-pypi
into
main
2 years ago
Overview
0
Commits
4
Pipelines
5
Changes
2
Expand
Closes
#1 (closed)
Edited
2 years ago
by
Georg Krause
0
0
Merge request reports
Compare
main
version 3
b275575c
2 years ago
version 2
2db91ae7
2 years ago
version 1
c24a8f97
2 years ago
main (base)
and
latest version
latest version
af86dd0b
4 commits,
2 years ago
version 3
b275575c
2 commits,
2 years ago
version 2
2db91ae7
2 commits,
2 years ago
version 1
c24a8f97
1 commit,
2 years ago
2 files
+
14
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
13
−
0
Options
@@ -7,6 +7,8 @@
# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
stages
:
-
test
-
publish
sast
:
stage
:
test
include
:
@@ -26,3 +28,14 @@ pytest:
coverage_report
:
coverage_format
:
cobertura
path
:
coverage.xml
publish
:
stage
:
publish
image
:
python:3.10-alpine
before_script
:
-
apk add poetry
-
poetry install
script
:
-
poetry publish --username __token__ --password $PYPI_TOKEN --build
only
:
-
tags
Loading