plugins/python is bugged so do the upload to pypi manually
This commit is contained in:
parent
a919efa17f
commit
311152793b
14
.drone.yml
14
.drone.yml
|
@ -80,10 +80,14 @@ trigger:
|
||||||
- tag
|
- tag
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: publish pypi
|
- name: publish pypi
|
||||||
image: plugins/pypi
|
image: python:10
|
||||||
settings:
|
commands:
|
||||||
username:
|
- pip install twine
|
||||||
|
- python setup.py sdist
|
||||||
|
- twine upload dist/*
|
||||||
|
environment:
|
||||||
|
TWINE_USERNAME:
|
||||||
from_secret: pypi_username
|
from_secret: pypi_username
|
||||||
password:
|
TWINE_PASSWORD:
|
||||||
from_secret: pypi_username
|
from_secret: pypi_username
|
Loading…
Reference in New Issue