Skip to content

Commit

Permalink
Bypass code signing for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Thavarshan committed Aug 17, 2024
1 parent 75c175d commit 42a1b94
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false

Expand Down
17 changes: 9 additions & 8 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ const config: ForgeConfig = {
icon: process.platform === 'win32' ? 'src/assets/images/icon/icon.ico' : 'src/assets/images/icon/icon.icns',
executableName: 'comet',
extraResource: 'node_modules/ffmpeg-static/ffmpeg',
...(process.platform === 'darwin' && {
osxSign: {},
osxNotarize: {
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
teamId: process.env.TEAM_ID,
},
}),
// Bypassing the sigining and notarisation for now
// ...(process.platform === 'darwin' && {
// osxSign: {},
// osxNotarize: {
// appleId: process.env.APPLE_ID,
// appleIdPassword: process.env.APPLE_ID_PASSWORD,
// teamId: process.env.TEAM_ID,
// },
// }),
},
rebuildConfig: {},
makers: [
Expand Down

0 comments on commit 42a1b94

Please sign in to comment.