From 9c33ec4243e16701629ef95397ada0dcc3b0783d Mon Sep 17 00:00:00 2001 From: SeoulSKY Date: Tue, 25 Jun 2024 22:30:54 -0600 Subject: [PATCH] Update pypi.yml --- .github/workflows/pypi.yml | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..4d01183 --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,39 @@ +name: Publish Python Package + +on: + release: + types: + - created + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.11" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install setuptools wheel twine + + - name: Build package + run: | + python setup.py sdist bdist_wheel + + - name: Publish package to PyPI + env: + TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} + TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} + run: | + python -m twine upload dist/* + + - name: Cleanup build files + run: | + rm -rf build dist *.egg-info