From 553fc7f7de9dee8111f5679ed3b9e80ad9727b1b Mon Sep 17 00:00:00 2001 From: Pamella Bezerra Date: Mon, 27 May 2024 14:04:58 -0300 Subject: [PATCH] Create action to release/publish the package to PyPI --- .github/workflows/release.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..ed7a9fd --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,30 @@ +name: Release - Publish to PyPI + +on: + release: + types: [published] + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.x" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build twine + - name: Build package + run: | + python -m build + twine check dist/* + - name: Publish package + run: twine upload dist/* + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}