diff --git a/.github/workflows/macos-nightly.yml b/.github/workflows/macos-nightly.yml index 74ff96a..ec3b38a 100644 --- a/.github/workflows/macos-nightly.yml +++ b/.github/workflows/macos-nightly.yml @@ -51,7 +51,7 @@ jobs: - name: Build for Intel Mac run: | echo "Building for Intel Mac..." - npm run tauri build -- --target x86_64-apple-darwin --bundles dmg + npm run tauri build -- --target x86_64-apple-darwin --bundles dmg --config "{\"bundle\":{\"macOS\":{\"signingIdentity\": \"Developer ID Application: Abdenasser Elidrissi (785JV74B9Y)\"}}}" # Rename the Intel build and store the filename cd src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/ for f in *.dmg; do @@ -66,7 +66,7 @@ jobs: - name: Build for Apple Silicon run: | echo "Building for aarch64..." - npm run tauri build -- --target aarch64-apple-darwin --bundles dmg + npm run tauri build -- --target aarch64-apple-darwin --bundles dmg --config "{\"bundle\":{\"macOS\":{\"signingIdentity\": \"Developer ID Application: Abdenasser Elidrissi (785JV74B9Y)\"}}}" # Rename the Apple Silicon build and store the filename cd src-tauri/target/aarch64-apple-darwin/release/bundle/dmg/ for f in *.dmg; do diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 087fd4e..2089e7d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -16,7 +16,6 @@ "icons/icon.ico" ], "macOS": { - "signingIdentity": "Developer ID Application: Abdenasser Elidrissi (785JV74B9Y)", "hardenedRuntime": true, "entitlements": null, "providerShortName": null