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.
34 lines
761 B
34 lines
761 B
2 years ago
|
name: Publish to PyPI
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
main:
|
||
|
name: sdist + pure wheel
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Set up latest Python
|
||
|
uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: "*"
|
||
|
|
||
|
- name: Install latest pip, build, twine
|
||
|
run: |
|
||
|
python -m pip install --upgrade --disable-pip-version-check pip
|
||
|
python -m pip install --upgrade build twine
|
||
|
|
||
|
- name: Build wheel and source distributions
|
||
|
run: python -m build
|
||
|
|
||
|
- name: Upload to PyPI via Twine
|
||
|
env:
|
||
|
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
||
|
run: twine upload --verbose -u '__token__' dist/*
|