diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 08ee1fd..38449f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,6 +11,9 @@ on: jobs: macos: runs-on: macos-latest + strategy: + matrix: + target: [arm64] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -30,7 +33,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ github.job }}-${{ matrix.target }} path: dist windows: @@ -57,7 +60,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ github.job }}-${{ matrix.target }} path: dist linux: @@ -85,7 +88,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ github.job }}-${{ matrix.target }} path: dist linux-cross: @@ -121,7 +124,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ github.job }}-${{ matrix.target }} path: dist musllinux: @@ -157,7 +160,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ github.job }}-${{ matrix.target }} path: dist musllinux-cross: @@ -195,5 +198,5 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ github.job }}-${{ matrix.target }} path: dist