Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Harris committed May 1, 2024
2 parents cf219fe + 9cdf97c commit 0e7cafe
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: '20.11.1'
- uses: actions/setup-python@v4
Expand All @@ -29,7 +29,9 @@ jobs:
- name: "Build application"
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASS }}
APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS }}
APPLE_TEAM_ID: ${{ secrets.APPLE_ID_TEAM }}
APPLE_ID_TEAM: ${{ secrets.APPLE_ID_TEAM }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
CSC_LINK: ${{ secrets.CSC_LINK }}
Expand Down
8 changes: 7 additions & 1 deletion build/entitlements.mac.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>
</plist>
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
"arm64",
"x64"
]
},
"notarize": {
"teamId": "778YBN5YK7"
}
},
"win": {
Expand Down Expand Up @@ -91,9 +94,8 @@
"build-electron/config.js"
],
"asarUnpack": [
"build/**/*"
],
"afterSign": "build/notarize.js"
"build/**/*"
]
},
"husky": {
"hooks": {
Expand Down

0 comments on commit 0e7cafe

Please sign in to comment.