2015-08-31 19:10:29 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								# Application Distribution
  
						 
					
						
							
								
									
										
										
										
											2014-05-04 18:32:12 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-04-02 22:45:35 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								To distribute your app with Electron, you need to package and rebrand it. The easiest way to do this is to use one of the following third party packaging tools:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								*  [electron-forge ](https://github.com/electron-userland/electron-forge ) 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								*  [electron-builder ](https://github.com/electron-userland/electron-builder ) 
						 
					
						
							
								
									
										
										
										
											2019-07-19 18:52:11 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								*  [electron-packager ](https://github.com/electron/electron-packager ) 
						 
					
						
							
								
									
										
										
										
											2019-04-02 22:45:35 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								These tools will take care of all the steps you need to take to end up with a distributable Electron applications, such as packaging your application, rebranding the executable, setting the right icons and optionally creating installers.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								## Manual distribution
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								You can also choose to manually get your app ready for distribution. The steps needed to do this are outlined below.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-26 00:36:34 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								To distribute your app with Electron, you need to download Electron's [prebuilt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								binaries](https://github.com/electron/electron/releases). Next, the folder
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								containing your app should be named `app`  and placed in Electron's resources
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								directory as shown in the following examples. Note that the location of
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								Electron's prebuilt binaries is indicated with `electron/`  in the examples
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								below.
							 
						 
					
						
							
								
									
										
										
										
											2014-05-04 18:32:12 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-18 15:26:26 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								On macOS:
							 
						 
					
						
							
								
									
										
										
										
											2014-05-04 18:32:12 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2015-04-16 11:31:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								electron/Electron.app/Contents/Resources/app/
							 
						 
					
						
							
								
									
										
										
										
											2014-05-04 18:32:12 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								├── package.json
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								├── main.js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								└── index.html
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								On Windows and Linux:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2015-04-16 11:31:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								electron/resources/app
							 
						 
					
						
							
								
									
										
										
										
											2014-05-04 18:32:12 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								├── package.json
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								├── main.js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								└── index.html
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								Then execute `Electron.app`  (or `electron`  on Linux, `electron.exe`  on Windows),
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 19:10:29 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								and Electron will start as your app. The `electron`  directory will then be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								your distribution to deliver to final users.
							 
						 
					
						
							
								
									
										
										
										
											2014-05-04 18:32:12 +08:00 
										
									 
								 
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 19:10:29 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								## Packaging Your App into a File
  
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 19:10:29 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								Apart from shipping your app by copying all of its source files, you can also
							 
						 
					
						
							
								
									
										
										
										
											2016-05-06 10:09:24 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								package your app into an [asar ](https://github.com/electron/asar ) archive to avoid
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								exposing your app's source code to users.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								To use an `asar`  archive to replace the `app`  folder, you need to rename the
							 
						 
					
						
							
								
									
										
										
										
											2015-04-16 11:31:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								archive to `app.asar` , and put it under Electron's resources directory like
							 
						 
					
						
							
								
									
										
										
										
											2015-10-14 06:28:27 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								below, and Electron will then try to read the archive and start from it.
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-18 15:26:26 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								On macOS:
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2015-04-16 11:31:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								electron/Electron.app/Contents/Resources/
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								└── app.asar
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								On Windows and Linux:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2015-04-16 11:31:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								electron/resources/
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								└── app.asar
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2014-12-07 21:38:29 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								More details can be found in [Application packaging ](application-packaging.md ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 19:10:29 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								## Rebranding with Downloaded Binaries
  
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-16 11:31:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								After bundling your app into Electron, you will want to rebrand Electron
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 12:12:04 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								before distributing it to users.
							 
						 
					
						
							
								
									
										
										
										
											2014-09-29 21:34:54 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 12:12:04 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								### Windows
  
						 
					
						
							
								
									
										
										
										
											2014-09-29 21:34:54 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								You can rename `electron.exe`  to any name you like, and edit its icon and other
							 
						 
					
						
							
								
									
										
										
										
											2016-02-04 13:29:32 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								information with tools like [rcedit ](https://github.com/atom/rcedit ).
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 12:12:04 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-18 15:26:26 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								### macOS
  
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								You can rename `Electron.app`  to any name you want, and you also have to rename
							 
						 
					
						
							
								
									
										
										
										
											2016-09-01 07:49:36 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								the `CFBundleDisplayName` , `CFBundleIdentifier`  and `CFBundleName`  fields in the
							 
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								following files:
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-16 11:31:12 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								*  `Electron.app/Contents/Info.plist`  
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								*  `Electron.app/Contents/Frameworks/Electron Helper.app/Contents/Info.plist`  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								You can also rename the helper app to avoid showing `Electron Helper`  in the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								Activity Monitor, but make sure you have renamed the helper app's executable
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								file's name.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								The structure of a renamed app would be like:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								MyApp.app/Contents
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								├── Info.plist
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								├── MacOS/
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								│   └── MyApp
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								└── Frameworks/
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								    └── MyApp Helper.app
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								        ├── Info.plist
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								        └── MacOS/
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
										 
							
							
								             
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 12:12:04 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								### Linux
  
						 
					
						
							
								
									
										
										
										
											2014-12-29 10:46:15 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								You can rename the `electron`  executable to any name you like.
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 12:12:04 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 19:10:29 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								## Rebranding by Rebuilding Electron from Source
  
						 
					
						
							
								
									
										
										
										
											2014-12-29 12:12:04 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-04-17 11:59:40 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								It is also possible to rebrand Electron by changing the product name and
							 
						 
					
						
							
								
									
										
										
										
											2018-09-08 18:15:32 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								building it from source. To do this you need to set the build argument
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								corresponding to the product name (`electron_product_name = "YourProductName"` )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								in the `args.gn`  file and rebuild.
							 
						 
					
						
							
								
									
										
										
										
											2014-12-29 12:12:04 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								### Creating a Custom Electron Fork
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								Creating a custom fork of Electron is almost certainly not something you will
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								need to do in order to build your app, even for "Production Level" applications.
							 
						 
					
						
							
								
									
										
										
										
											2017-06-25 22:14:24 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								Using a tool such as `electron-packager`  or `electron-forge`  will allow you to
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								"Rebrand" Electron without having to do these steps.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								You need to fork Electron when you have custom C++ code that you have patched
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								directly into Electron, that either cannot be upstreamed, or has been rejected
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								from the official version. As maintainers of Electron, we very much would like
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								to make your scenario work, so please try as hard as you can to get your changes
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								into the official version of Electron, it will be much much easier on you, and
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:01:38 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								we appreciate your help.
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:02:22 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								#### Creating a Custom Release with surf-build
  
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								1.  Install [Surf ](https://github.com/surf-build/surf ), via npm: 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								  `npm install -g surf-build@latest` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:01:38 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								2.  Create a new S3 bucket and create the following empty directory structure: 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-11-20 14:18:24 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								    ```sh
							 
						 
					
						
							
								
									
										
										
										
											2018-07-20 14:58:19 -03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								    -  electron/
							 
						 
					
						
							
								
									
										
										
										
											2016-12-10 11:14:10 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								      -  symbols/
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								      -  dist/
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								    ```
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:01:38 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								3.  Set the following Environment Variables: 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:26 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  *  `ELECTRON_GITHUB_TOKEN`  - a token that can create releases on GitHub
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:05:01 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  *  `ELECTRON_S3_ACCESS_KEY` , `ELECTRON_S3_BUCKET` , `ELECTRON_S3_SECRET_KEY`  -
							 
						 
					
						
							
								
									
										
										
										
											2018-07-20 14:58:19 -03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								    the place where you'll upload Node.js headers as well as symbols
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  *  `ELECTRON_RELEASE`  - Set to `true`  and the upload part will run, leave unset
							 
						 
					
						
							
								
									
										
										
										
											2018-05-08 00:16:09 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								    and `surf-build`  will do CI-type checks, appropriate to run for every
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								    pull request.
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:34:23 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  *  `CI`  - Set to `true`  or else it will fail
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:26 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  *  `GITHUB_TOKEN`  - set it to the same as `ELECTRON_GITHUB_TOKEN` 
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  *  `SURF_TEMP`  - set to `C:\Temp`  on Windows to prevent path too long issues
							 
						 
					
						
							
								
									
										
										
										
											2017-11-20 14:18:24 +08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  *  `TARGET_ARCH`  - set to `ia32`  or `x64` 
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:06:40 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								4.  In `script/upload.py` , you _must_  set `ELECTRON_REPO`  to your fork (`MYORG/electron` ), 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								  especially if you are a contributor to Electron proper.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:01:38 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								5.  `surf-build -r https://github.com/MYORG/electron -s YOUR_COMMIT -n 'surf-PLATFORM-ARCH'`  
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:00:04 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-05-27 14:01:38 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
								
									
								 
							
							
								6.  Wait a very, very long time for the build to complete.