diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 48f7642..bb29362 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,10 +12,10 @@ jobs: fail-fast: false matrix: include: - - platform: 'macos-latest' + - platform: 'macos-15' args: '--target aarch64-apple-darwin' arch: 'aarch64-apple-darwin' - - platform: 'macos-latest' + - platform: 'macos-15' args: '--target x86_64-apple-darwin' arch: 'x86_64-apple-darwin' - platform: 'ubuntu-22.04' @@ -45,7 +45,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-15' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} - name: 🛠️ Rust cache uses: swatinem/rust-cache@v2