Skip to content

Commit

Permalink
try fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
atinylittleshell committed Feb 17, 2024
1 parent 6b0d4a7 commit 790bd36
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 25 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
steps:
- name: setup python
Expand Down
12 changes: 1 addition & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,8 @@
"linux": {
"category": "TerminalEmulator",
"target": [
"deb",
"AppImage",
"rpm",
"snap",
"pacman"
"snap"
],
"icon": "icon.icns"
},
Expand All @@ -79,13 +76,6 @@
"entitlementsInherit": "./scripts/entitlements.plist",
"darkModeSupport": true
},
"deb": {
"compression": "bzip2",
"afterInstall": "./scripts/linux_install.tpl"
},
"rpm": {
"afterInstall": "./scripts/linux_install.tpl"
},
"snap": {
"confinement": "classic",
"publish": "github"
Expand Down
8 changes: 0 additions & 8 deletions packages/app/assets/entitlements.mac.plist

This file was deleted.

6 changes: 0 additions & 6 deletions scripts/linux_install.tpl

This file was deleted.

2 changes: 2 additions & 0 deletions scripts/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ exports.default = async function notarizing(context) {
if (
electronPlatformName !== 'darwin' ||
!process.env.APPLE_ID ||
!process.env.APPLE_TEAM_ID ||
!process.env.APPLE_PASSWORD
) {
return;
Expand All @@ -18,5 +19,6 @@ exports.default = async function notarizing(context) {
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_PASSWORD,
teamId: process.env.APPLE_TEAM_ID,
});
};

0 comments on commit 790bd36

Please sign in to comment.