diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c7e6d2f9..85bfddda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - platform: 'macos-latest' args: '--target aarch64-apple-darwin' python-version: '3.12' - - platform: 'macos-latest' + - platform: 'macos-15-intel' args: '--target x86_64-apple-darwin' python-version: '3.12' - platform: 'ubuntu-22.04' @@ -79,7 +79,7 @@ jobs: - name: Install Rust stable uses: dtolnay/rust-toolchain@stable with: - targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} + targets: ${{ (matrix.platform == 'macos-latest' && 'aarch64-apple-darwin') || (matrix.platform == 'macos-15-intel' && 'x86_64-apple-darwin') || '' }} - name: Rust cache uses: swatinem/rust-cache@v2