Skip to content

Commit 8dd20a0

Browse files
authored
fix: release-worker target passing (#100)
1 parent e0aecd5 commit 8dd20a0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/build-package/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ runs:
2929
- name: Build wheels
3030
uses: PyO3/maturin-action@v1
3131
with:
32-
target: ${{ steps.target.outputs.target }}
32+
target: ${{ env.TARGET }}
3333
args: --release --out dist --find-interpreter
3434
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
3535
- name: Upload wheels
3636
uses: actions/upload-artifact@v4
3737
with:
38-
name: wheels-${{ steps.target.outputs.target }}
38+
name: wheels-${{ env.TARGET }}
3939
path: dist

.github/workflows/release-worker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: ${{ matrix.os }} (Py ${{ matrix.python-version }})
2323
strategy:
2424
matrix:
25-
os: [ubuntu-latest, macos-15-arm64, macos-15-intel, windows-latest]
25+
os: [ubuntu-latest, macos-latest, macos-15-intel, windows-latest]
2626
python-version: ["3.11", "3.12", "3.13", "3.14"]
2727
runs-on: ${{ matrix.os }}
2828
steps:

0 commit comments

Comments
 (0)