Skip to content

Instantly share code, notes, and snippets.

@bpsagar
Last active April 24, 2020 16:17
Show Gist options
  • Save bpsagar/bce578b14a0ab42751cba109e9f73fdc to your computer and use it in GitHub Desktop.
Save bpsagar/bce578b14a0ab42751cba109e9f73fdc to your computer and use it in GitHub Desktop.
Building Electron app with Gitlab's CI
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