Skip to content

Commit

Permalink
add publish_pypi ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Dec 10, 2024
1 parent e6eed5f commit be4b848
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/publish_pypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Publish to PYPI
on:
release:
types: [published]

jobs:
pypi-release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]

steps:
- name: checkout
uses: actions/checkout@v1

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: python -m pip install --upgrade pip wheel twine

- name: Build Dist
run: python setup.py sdist bdist_wheel --universal

- name: Publish package to TestPyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit be4b848

Please sign in to comment.