diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 588bfbe..597a05d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -449,7 +449,7 @@ jobs: --mainExe "$mainexe" \ -o release/velopack \ --signAppIdentity "$APPLE_SIGNING_IDENTITY" \ - --signEntitlements "$PWD/resources/entitlements.mac.plist" \ + --signEntitlements "$PWD/resources/entitlements.mac.entitlements" \ --notaryProfile "velopack-notary" fi diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 999243b..561ccf5 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -304,7 +304,7 @@ jobs: --mainExe "$mainexe" \ -o release/velopack \ --signAppIdentity "$APPLE_SIGNING_IDENTITY" \ - --signEntitlements "$PWD/resources/entitlements.mac.plist" \ + --signEntitlements "$PWD/resources/entitlements.mac.entitlements" \ --notaryProfile "velopack-notary" fi diff --git a/package.json b/package.json index c60a750..83bac93 100644 --- a/package.json +++ b/package.json @@ -111,8 +111,8 @@ "icon": "resources/icons/icon.icns", "hardenedRuntime": true, "gatekeeperAssess": false, - "entitlements": "resources/entitlements.mac.plist", - "entitlementsInherit": "resources/entitlements.mac.plist", + "entitlements": "resources/entitlements.mac.entitlements", + "entitlementsInherit": "resources/entitlements.mac.entitlements", "notarize": true, "extendInfo": { "NSMicrophoneUsageDescription": "fee[dB]ack needs microphone access for guitar input and note detection." diff --git a/resources/entitlements.mac.plist b/resources/entitlements.mac.entitlements similarity index 100% rename from resources/entitlements.mac.plist rename to resources/entitlements.mac.entitlements diff --git a/scripts/sign-macos-binaries.sh b/scripts/sign-macos-binaries.sh index f8a368e..b537ef1 100755 --- a/scripts/sign-macos-binaries.sh +++ b/scripts/sign-macos-binaries.sh @@ -29,7 +29,7 @@ fi SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PROJECT_DIR="$(dirname "$SCRIPT_DIR")" -ENTITLEMENTS="$PROJECT_DIR/resources/entitlements.mac.plist" +ENTITLEMENTS="$PROJECT_DIR/resources/entitlements.mac.entitlements" if [[ ! -f "$ENTITLEMENTS" ]]; then echo "[sign-macos] entitlements file missing: $ENTITLEMENTS" >&2