From 472a9f2d092d17df658386a9f2231bf5ca11900e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Gonz=C3=A1lez?= Date: Mon, 7 Apr 2025 12:21:41 -0400 Subject: [PATCH] ci: fix pypi publishing Bump the current version of the publish action to fix the error 'InvalidDistribution: Metadata is missing required fields'. --- .github/workflows/python-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index c4e21d4..a6a530c 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -16,7 +16,7 @@ permissions: contents: read jobs: - deploy: + publish: runs-on: ubuntu-latest @@ -34,7 +34,7 @@ jobs: run: | python -m build --sdist --wheel --outdir dist/ . - name: Publish package - uses: pypa/gh-action-pypi-publish@v1.10.3 + uses: pypa/gh-action-pypi-publish@v1.12.4 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}