temmies/.github/workflows/python-publish.yml

59 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2024-12-02 17:27:33 +01:00
name: Upload Python Package
on:
release:
types: [published]
permissions:
contents: read
jobs:
release-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
2024-12-02 17:33:17 +01:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
2024-12-02 17:27:33 +01:00
- name: Build release distributions
run: |
2024-12-02 17:33:17 +01:00
python setup.py bdist_wheel
2024-12-02 17:27:33 +01:00
- name: Upload distributions
uses: actions/upload-artifact@v4
with:
name: release-dists
path: dist/
pypi-publish:
runs-on: ubuntu-latest
needs:
- release-build
permissions:
id-token: write
environment:
name: pypi
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
with:
name: release-dists
path: dist/
- name: Publish release distributions to PyPI
2024-12-02 17:33:17 +01:00
env:
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m pip install twine
twine upload dist/*