From 955a7c01c358cc557f2415e7e077cb15178c5788 Mon Sep 17 00:00:00 2001 From: Kichura <68134602+Kichura@users.noreply.github.com> Date: Tue, 19 Nov 2024 01:54:43 +0100 Subject: [PATCH] update macOS to 15. --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a422b1..be78739 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,8 +32,7 @@ jobs: strategy: fail-fast: false matrix: - # maybe update to macOS 14 if this is ARM64-ready? - platform: [macos-13, ubuntu-20.04, windows-2022] + platform: [macos-15, ubuntu-20.04, windows-2022] runs-on: ${{ matrix.platform }} steps: @@ -87,7 +86,7 @@ jobs: path: src-tauri/target/release/fabulously-optimized-installer - name: Upload the macOS packages uses: actions/upload-artifact@v4 - if: matrix.platform == 'macos-13' + if: matrix.platform == 'macos-15' with: name: macos-packages path: src-tauri/target/release/bundle/dmg/*.dmg @@ -117,7 +116,7 @@ jobs: path: src-tauri/target/debug/fabulously-optimized-installer - name: Upload the macOS packages (debug) uses: actions/upload-artifact@v4 - if: matrix.platform == 'macos-13' + if: matrix.platform == 'macos-15' with: name: macos-packages-debug path: src-tauri/target/debug/bundle/dmg/*.dmg