From 147671af66e6492d731c816de6001f01be49a5a5 Mon Sep 17 00:00:00 2001 From: Tanner Sommers Date: Mon, 28 Apr 2025 19:49:47 +0000 Subject: [PATCH] drop macos support for sync Signed-off-by: Tanner Sommers --- .github/workflows/deploy.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a3aa614..07b9a15 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -34,7 +34,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} @@ -53,17 +53,6 @@ jobs: sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf - - name: Install x86_64-apple-darwin for mac and build FanslySync binaries - if: matrix.os == 'macos-latest' - run: | - rustup target add x86_64-apple-darwin - npm i - npm run tauri build -- --target x86_64-apple-darwin - npm run tauri build -- --target aarch64-apple-darwin - env: - TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} - TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} - - name: build FanslySync app for Windows, Linux if: matrix.os != 'macos-latest' run: |