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 }}