2021-06-24 19:25:44 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: build and publish
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python
|
|
|
|
commands:
|
2021-06-24 19:51:14 +00:00
|
|
|
- python -m pip install build
|
2021-06-24 19:25:44 +00:00
|
|
|
- python -m build
|
|
|
|
- name: publish
|
|
|
|
image: plugins/pypi
|
|
|
|
settings:
|
2021-06-24 19:55:12 +00:00
|
|
|
setupfile: setup.cfg
|
2021-06-24 19:25:44 +00:00
|
|
|
username:
|
|
|
|
from_secret: pypi_username
|
|
|
|
password:
|
|
|
|
from_secret: pypi_password
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|