You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
758 B
42 lines
758 B
--- |
|
kind: pipeline |
|
name: PyPi Publish |
|
type: docker |
|
|
|
steps: |
|
- name: Publish JBOI PyPi |
|
image: plugins/pypi |
|
failure: ignore |
|
settings: |
|
username: |
|
from_secret: jboi_username |
|
password: |
|
from_secret: jboi_password |
|
repository: https://pypi.jboi.dev |
|
distributions: |
|
- sdist |
|
- bdist_wheel |
|
|
|
- name: Publish Public PyPi |
|
image: plugins/pypi |
|
failure: ignore |
|
settings: |
|
username: |
|
from_secret: pypi_username |
|
password: |
|
from_secret: pypi_password |
|
distributions: |
|
- sdist |
|
- bdist_wheel |
|
when: |
|
ref: |
|
exclude: |
|
- refs/tags/v*dev* |
|
|
|
trigger: |
|
event: |
|
- tag |
|
ref: |
|
- refs/tags/v* |
|
repo: |
|
- ShadowJonathan/SNEK-Imgur
|
|
|