You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jobs:
- build # Step 1: make .exe, .dmg, etc and save as CircleCI artifacts and / or cache them
- allow_publish: # Step 2: QA tests out .exe, .dmg and approves themtype: approvalrequires: [build]
- publish: # Step 3: the .exe, .dmg, etc from the `build` step get published.requires: [allow_publish]
But I don't see how to run electron-builder --publish so that it re-uses the already built .exe, .dmg, etc.
The text was updated successfully, but these errors were encountered:
I've read through #1102 (comment) and https://www.electron.build/#pack-only-in-a-distributable-format but it's still clear as dirt to me. What I want is a 3-step CI workflow like this:
But I don't see how to run
electron-builder --publish
so that it re-uses the already built .exe, .dmg, etc.The text was updated successfully, but these errors were encountered: