diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 335d2a46cbd..85c7dd69338 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -48,6 +48,7 @@ runs: shell: bash --noprofile --norc -eo pipefail -x {0} run: | set -ea + runner_os="$(echo "${RUNNER_OS}" | tr '[:upper:]' '[:lower:]')" npm ci npm run package npm run test-${runner_os} diff --git a/forge.config.ts b/forge.config.ts index 53a6130ede5..98785c6c1dc 100644 --- a/forge.config.ts +++ b/forge.config.ts @@ -21,7 +21,7 @@ every byte of data was written correctly and much more.`; let osxSigningConfig: any = {}; let winSigningConfig: any = {}; -if (process.env.NODE_ENV !== 'development') { +if (process.env.NODE_ENV !== 'development' || process.env.ELECTRON_SKIP_NOTARIZATION !== 'true') { osxSigningConfig.osxSign = { optionsForFile: () => ({ entitlements: './entitlements.mac.plist',