Last active
April 24, 2020 16:17
-
-
Save bpsagar/bce578b14a0ab42751cba109e9f73fdc to your computer and use it in GitHub Desktop.
Building Electron app with Gitlab's CI
This file contains 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
stages: | |
- build | |
build: | |
image: electronuserland/builder:wine | |
stage: build | |
script: | |
- yarn | |
# Linux machine can be used to build only Windows and Linux binaries | |
- yarn dist -wl | |
artifacts: | |
expire_in: 30 days | |
paths: | |
- ./dist/ | |
only: | |
- master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment