From 0d4f427ca6636014cbcb1d1dcde74d2dfc8e8e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Ortega=20Gonz=C3=A1lez?= <75342750+cortega26@users.noreply.github.com> Date: Thu, 2 May 2024 15:03:23 -0400 Subject: [PATCH] Create publish-to-pypi.yml --- .github/workflows/publish-to-pypi.yml | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/publish-to-pypi.yml diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml new file mode 100644 index 0000000..fd53ec9 --- /dev/null +++ b/.github/workflows/publish-to-pypi.yml @@ -0,0 +1,32 @@ +name: Publish Python Package to PyPI + +on: + push: + branches: [main] + +jobs: + + build-and-publish: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.9 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build + + - name: Build package + run: python -m build + + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + user: cortega + password: ${{ secrets.rutificador }}