diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f2aebee..8bd0be8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -249,10 +249,9 @@ jobs: id-token: write # IMPORTANT: mandatory for trusted publishing https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ contents: read steps: - - name: Download Build Artifact + - name: Download All Build Artifacts uses: actions/download-artifact@v4 with: - name: 'dist-files-*' path: dist - name: Publish distribution to TestPyPI @@ -260,7 +259,7 @@ jobs: with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository-url: https://test.pypi.org/legacy/ - packages: 'dist/*' + packages: 'dist/**' release: if: startsWith(github.ref, 'refs/tags/')