Advertisement
CursiveD

gitlab-ci.yml

Dec 27th, 2016
625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.49 KB | None | 0 0
  1. #Docker Image
  2. #My Image
  3. #image:  cursived/ubuelectron
  4. # One I found
  5. #image: monostream/nodejs-electron-packager
  6. #One I am currently trying
  7. image: electronuserland/electron-builder:wine
  8. before_script:
  9. #- npm install -g electron
  10. #-npm install
  11.  
  12. after_script:
  13. #executes after script of job
  14.  
  15. #build stages
  16. stages:
  17. - build
  18.  
  19. builder:
  20.  stage: build
  21.  only:
  22. - trunk #only execute on trunk branch
  23.  script:
  24. - npm install && npm prune && npm run dist
  25.  artifacts:
  26.     paths:
  27.    - ./dist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement