Skip to content
Snippets Groups Projects
Commit ac27dda8 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'issue-50' into 'master'

Fixes pypi stage to skip deployment if current package is private

Closes #50

See merge request !144
parents 1d55ff4f 5406d012
No related branches found
No related tags found
1 merge request!144Fixes pypi stage to skip deployment if current package is private
Pipeline #37281 passed
...@@ -169,7 +169,10 @@ pypi: ...@@ -169,7 +169,10 @@ pypi:
stage: pypi stage: pypi
environment: pypi environment: pypi
only: only:
- /^v\d+\.\d+\.\d+([abc]\d*)?$/ # PEP-440 compliant version (tags) refs:
- /^v\d+\.\d+\.\d+([abc]\d*)?$/ # PEP-440 compliant version (tags)
variables:
- $CI_PROJECT_VISIBILITY == "public"
except: except:
- branches - branches
script: script:
......
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