Skip to content

Commit

Permalink
[CP-XXX] Reverted skip notarization for feature branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarski committed Dec 19, 2024
1 parent 325769d commit 1a72ec5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/nexus-feature-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ jobs:
DEV_DEVICE_LOGGER_ENABLED: ${{ secrets.DEV_DEVICE_LOGGER_ENABLED }}
FEATURE_TOGGLE_RELEASE_ENVIRONMENT: ${{ secrets.FEATURE_TOGGLE_RELEASE_ENVIRONMENT }}
DEV_TOOLS_SHORTCUT_ENABLED: "1"
SKIP_MAC_NOTARIZE_ENABLED: "1"
run: |
printenv > .env
- name: Setup Env for Linux
Expand Down
5 changes: 1 addition & 4 deletions scripts/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ require("dotenv").config({
module.exports = async function (context) {
const { electronPlatformName, appOutDir } = context

if (
electronPlatformName !== "darwin" ||
process.env.SKIP_MAC_NOTARIZE_ENABLED === "1"
) {
if (electronPlatformName !== "darwin") {
return
}

Expand Down

0 comments on commit 1a72ec5

Please sign in to comment.