Compare commits
2 Commits
1d57dc2914
...
311152793b
Author | SHA1 | Date |
---|---|---|
Massaki Archambault | 311152793b | |
Massaki Archambault | a919efa17f |
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
|
|
@ -3,7 +3,7 @@ name = ecommerce-exporter
|
||||||
description = ecommerce-exporter is a prometheus exporter that export the price of products in e-commerce site as prometheus metrics.
|
description = ecommerce-exporter is a prometheus exporter that export the price of products in e-commerce site as prometheus metrics.
|
||||||
url = https://code.badjware.dev/badjware/ecommerce-exporter
|
url = https://code.badjware.dev/badjware/ecommerce-exporter
|
||||||
author = badjware
|
author = badjware
|
||||||
author_email = marchambault.badjware.dev
|
author_email = marchambault@badjware.dev
|
||||||
licence = MIT Licence
|
licence = MIT Licence
|
||||||
classifers =
|
classifers =
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
|
|
Loading…
Reference in New Issue