From acaa6a2c55bc62bbea7428d2e6917f1d59fbfbb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Mart=C3=ADnez=20Gonz=C3=A1lez?= <130084892+marco-2023@users.noreply.github.com> Date: Fri, 7 Feb 2025 23:14:36 -0500 Subject: [PATCH] pypi publish workflow (#101) * New try publish to pypi * Continue with new tests --- .github/workflows/build_wheels.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index f6acb7c..66486f4 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -187,11 +187,17 @@ jobs: uses: actions/download-artifact@v4 with: path: dist/ + merge-multiple: true # Merge all artifacts into the dist/ directory + + - name: Check dist contents + run: | + echo "Contents of dist:" + ls -l dist/ + - name: Publish distribution to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - env: - TWINE_USERNAME: "__token__" - TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} + with: + verbose: true # - name: Upload to PyPI # env: