diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index f6a9175..142fef2 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -98,7 +98,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.python }}-${{ matrix.buildplat[1] }}-${{ matrix.buildplat[2] }} path: ./wheelhouse/*.whl upload: @@ -110,7 +110,8 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels + pattern: wheels-* + merge-multiple: true path: dist - name: Display structure of downloaded files @@ -119,6 +120,6 @@ jobs: - uses: pypa/gh-action-pypi-publish@release/v1 if: startsWith(github.ref, 'refs/tags/') with: - skip_existing: true + skip-existing: true user: ${{ secrets.PYPI_USERNAME }} password: ${{ secrets.PYPI_PASSWORD }}