Automatic Cross-Platform Deployments with Electron on a Travis CI ServerMarch 12th [email protected] wagslane Lane Wagner Bitcoinist, libertarian, atheist, cryptography fan, and founder of http://qvault.ioThis is a tutorial on how to setup an Electron app on Travis CI , so that new versions are deployed to Github Releases with a simple pull request.
Also, if you don’t have an electron app yet and just want to start with it as an example feel free.
Electron Builder is a fantastic npm package that handles building, signing, notarizing, and deploying an electron app on all three operating systems.
Add it using yarn ( recommended by Electron Builder ):yarn add electron- builder –devpackage.json file for most configuration.
{ “name” : “{APP_NAME}” , “version” : “{VERSION_NUMBER}” , “description” : “A minimal Electron application that deploys on CI servers” , “main” : “main.js” , “scripts” : { “start” : “electron .”
No Comments
Leave a comment Cancel