From 74145abe956acd01f904a3d5a1dedba8dfe66d43 Mon Sep 17 00:00:00 2001 From: Danny Beck Date: Tue, 14 Jan 2025 13:34:48 -0800 Subject: [PATCH] updates ad-hoc signing for aarch64 builds to remove quarantine attribute --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 921dba0..314433a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,8 +62,10 @@ jobs: prerelease: false args: ${{ matrix.args }} - - name: Ad-hoc signing for macOS + - name: Ad-hoc signing and quarantine removal for macOS if: matrix.platform == 'macos-latest' run: | echo "Performing ad-hoc signing..." codesign --force --deep --sign - ./src-tauri/target/*/release/bundle/macos/*.app + echo "Removing quarantine attribute..." + xattr -rd com.apple.quarantine ./src-tauri/target/*/release/bundle/macos/*.app