Skip to content

Commit

Permalink
Adding more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
KenCorma committed Aug 28, 2024
1 parent 2e2d690 commit 9d50165
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,13 @@ jobs:
echo "SIGN_ID=$SIGN_ID" >> $GITHUB_ENV
- name: Publish app
env:
DEBUG: electron-forge:*
DEBUG: electron-notarize*
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SIGN_ID: ${{env.SIGN_ID}}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: npm run publish -- --arch="x64","arm64"
- name: Check Notarization
run: |
spctl -a -vvv -t install "out/ComfyUI-darwin-x64/ComfyUI.app"
5 changes: 5 additions & 0 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ const config: ForgeConfig = {
},
},
extraResource: ['./assets/UI', './assets/ComfyUI', './assets/python'],
osxNotarize: {
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_PASSWORD,
teamId: process.env.APPLE_TEAM_ID
}
},
rebuildConfig: {},
hooks: {
Expand Down

0 comments on commit 9d50165

Please sign in to comment.