diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 72405023..0205edeb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] arch: [auto, aarch64, universal2] - py: [cp38, cp39, cp310, cp311] + py: [cp38, cp39, cp310, cp311, cp312] exclude: - os: windows-latest arch: aarch64 @@ -89,6 +89,7 @@ jobs: - uses: actions/upload-artifact@v4 with: + name: dist-${{ matrix.py }}-${{ matrix.os }}-${{ matrix.arch }} path: dist/*.tar.gz upload: @@ -98,7 +99,8 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact + pattern: dist-* + merge-multiple: true path: dist - uses: pypa/gh-action-pypi-publish@release/v1