From 2387c1b56abe9c08d27c3b92fb22ed95de3f5e65 Mon Sep 17 00:00:00 2001 From: Giorgi Merebashvili Date: Sun, 15 Feb 2026 23:28:46 +0400 Subject: [PATCH] fix: release-worker target passing --- .github/actions/build-package/action.yml | 4 ++-- .github/workflows/release-worker.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-package/action.yml b/.github/actions/build-package/action.yml index 83093c9..7addaff 100644 --- a/.github/actions/build-package/action.yml +++ b/.github/actions/build-package/action.yml @@ -29,11 +29,11 @@ runs: - name: Build wheels uses: PyO3/maturin-action@v1 with: - target: ${{ steps.target.outputs.target }} + target: ${{ env.TARGET }} args: --release --out dist --find-interpreter sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels-${{ steps.target.outputs.target }} + name: wheels-${{ env.TARGET }} path: dist diff --git a/.github/workflows/release-worker.yml b/.github/workflows/release-worker.yml index 83d54e9..5123ffb 100644 --- a/.github/workflows/release-worker.yml +++ b/.github/workflows/release-worker.yml @@ -22,7 +22,7 @@ jobs: name: ${{ matrix.os }} (Py ${{ matrix.python-version }}) strategy: matrix: - os: [ubuntu-latest, macos-15-arm64, macos-15-intel, windows-latest] + os: [ubuntu-latest, macos-latest, macos-15-intel, windows-latest] python-version: ["3.11", "3.12", "3.13", "3.14"] runs-on: ${{ matrix.os }} steps: