diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5acbde8..390f6cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: args: '' - platform: macos-latest args: '--target aarch64-apple-darwin' - - platform: macos-13 + - platform: macos-12 args: '--target x86_64-apple-darwin' runs-on: ${{ matrix.platform }} @@ -35,7 +35,7 @@ jobs: - name: Install Rust stable uses: dtolnay/rust-toolchain@stable with: - targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin' || matrix.platform == 'macos-13' && 'x86_64-apple-darwin' || '' }} + targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin' || matrix.platform == 'macos-12' && 'x86_64-apple-darwin' || '' }} - name: Install Linux dependencies if: matrix.platform == 'ubuntu-22.04'