Added CI/CD
Some checks failed
Publish Python Package to PyPI / deploy (push) Failing after 34s

This commit is contained in:
2025-06-05 11:12:43 -04:00
parent 69d5d6f6b2
commit 579e884635
2 changed files with 36 additions and 2 deletions

View File

@ -0,0 +1,34 @@
name: Publish Python Package to PyPI
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest-slim
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- 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/*