Created
September 29, 2017 05:34
-
-
Save develar/bdf242a3cbf6120ed2300337f71e0982 to your computer and use it in GitHub Desktop.
Sample appveyor.yml to Build Electron App for Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| image: Visual Studio 2017 | |
| platform: | |
| - x64 | |
| cache: | |
| - node_modules | |
| - '%USERPROFILE%\.electron' | |
| init: | |
| - git config --global core.autocrlf input | |
| install: | |
| - ps: Install-Product node 8 x64 | |
| - yarn | |
| build_script: | |
| - yarn dist | |
| test: off |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you don't have
distnpm script in yourpackage.json, call./node_modules/.bin/electron-builderdirectly.