From 7ea1cb04343e0e288325fa24f9a0a4d84776d040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20NAVARRETE=20GUTI=C3=89RREZ?= Date: Wed, 27 Mar 2024 16:19:28 +0100 Subject: [PATCH] [CI] add deploy with trusted publisher --- .github/workflows/python-package-deploy.yml | 40 +++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/python-package-deploy.yml diff --git a/.github/workflows/python-package-deploy.yml b/.github/workflows/python-package-deploy.yml new file mode 100644 index 0000000..71d5ea9 --- /dev/null +++ b/.github/workflows/python-package-deploy.yml @@ -0,0 +1,40 @@ +--- +# Inspired from: +# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ +name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI + +on: + push: + branches: [main] +jobs: + build-n-publish: + name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI + runs-on: ubuntu-latest + permissions: + id-token: write + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.11 + uses: actions/setup-python@v5 + with: + python-version: "3.11" + - name: Install pypa/build + run: >- + python -m + pip install + build + --user + - name: Build a binary wheel and a source tarball + run: >- + python -m + build + --outdir dist/ + . + - name: Publish distribution 📦 to Test PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ + skip-existing: true + - name: Publish distribution 📦 to PyPI + #if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@release/v1