From cbe0ec5aafbb2b89daa64e7b70e96921a9554e0d Mon Sep 17 00:00:00 2001 From: suibian <65838638+ningmeng68@users.noreply.github.com> Date: Mon, 15 Dec 2025 13:55:48 +0800 Subject: [PATCH 1/2] Remove macOS from CI build matrix --- .github/workflows/aseprite_build_deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aseprite_build_deploy.yml b/.github/workflows/aseprite_build_deploy.yml index 24845987..400d6534 100644 --- a/.github/workflows/aseprite_build_deploy.yml +++ b/.github/workflows/aseprite_build_deploy.yml @@ -67,7 +67,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, ubuntu-latest, macOS-latest] + os: [windows-latest, ubuntu-latest] fail-fast: false steps: - name: (Windows) Install dependencies @@ -147,4 +147,4 @@ jobs: upload_url: ${{ needs.check-version.outputs.upload_url }} asset_path: aseprite/build/bin/Aseprite-${{ needs.check-version.outputs.latest_tag }}-${{ runner.os }}.zip asset_name: Aseprite-${{ needs.check-version.outputs.latest_tag }}-${{ runner.os }}.zip - asset_content_type: application/zip \ No newline at end of file + asset_content_type: application/zip From 32befcb969e41bb2972ab61f1e895292c181e506 Mon Sep 17 00:00:00 2001 From: suibian <65838638+ningmeng68@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:23:08 +0800 Subject: [PATCH 2/2] Limit build matrix to Windows only --- .github/workflows/aseprite_build_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aseprite_build_deploy.yml b/.github/workflows/aseprite_build_deploy.yml index 400d6534..aa3b484f 100644 --- a/.github/workflows/aseprite_build_deploy.yml +++ b/.github/workflows/aseprite_build_deploy.yml @@ -67,7 +67,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, ubuntu-latest] + os: [windows-latest] fail-fast: false steps: - name: (Windows) Install dependencies