From 869c85d0ed6c17f4614ee6e8f32694dc7f101446 Mon Sep 17 00:00:00 2001 From: hoax Date: Wed, 25 Sep 2024 00:06:35 +0530 Subject: [PATCH] fix: testing codesign on macos --- .github/workflows/build.yml | 2 +- app/src-tauri/tauri.macos.conf.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 414117c..34d191d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -89,4 +89,4 @@ jobs: - name: Verify signature if: matrix.platform == 'macos-latest' run: | - codesign -v -vvvv \ No newline at end of file + codesign -v -vvvv /Users/runner/work/noteapp/noteapp/app/src-tauri/target/release/bundle/macos/scribe.app \ No newline at end of file diff --git a/app/src-tauri/tauri.macos.conf.json b/app/src-tauri/tauri.macos.conf.json index 16604d3..5fc2406 100644 --- a/app/src-tauri/tauri.macos.conf.json +++ b/app/src-tauri/tauri.macos.conf.json @@ -14,7 +14,7 @@ ], "bundle": { "windows": { - "signCommand": "codesign --deep --force --verbose --sign noteapp %1" + "signCommand": "codesign -s - -f %1" } } }