mirror of
https://github.com/AnimeThemes/animethemes-batch-encoder.git
synced 2026-07-14 19:14:36 +02:00
17 lines
430 B
YAML
17 lines
430 B
YAML
name: Publish to PyPI.org
|
|
on:
|
|
release:
|
|
types: [published]
|
|
jobs:
|
|
pypi:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- run: python3 -m pip install --upgrade build && python3 -m build
|
|
- name: Publish package
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
password: ${{ secrets.PYPI_API_TOKEN }} |