Files
PolySolve/.gitea/workflows/publish-python.yml
Jonathan Rampersad 2cf2126b90
All checks were successful
Run Python Tests / test (3.10) (push) Successful in 10s
Run Python Tests / test (3.12) (push) Successful in 9s
Publish Python Package to PyPI / deploy (push) Successful in 28s
Run Python Tests / test (3.8) (push) Successful in 10s
Added Workflow to automatically deploy to pypi
2025-06-16 19:28:50 -04:00

35 lines
669 B
YAML

name: Publish Python Package to PyPI
on:
push:
branches:
- main
jobs:
deploy:
runs-on: nvidia-cuda
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: python -m build
- name: Publish package to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_KEY }}
run: |
twine upload --skip-existing dist/*