openflexure-microscope-server/.gitlab-ci.yml
2019-05-06 14:29:25 +01:00

26 lines
No EOL
473 B
YAML

stages:
- build
- deploy
build:
stage: build
image: electronuserland/builder:wine
script:
- npm install
- npm run release
artifacts:
paths:
- release-builds/*.exe
- release-builds/*.deb
- release-builds/*.AppImage
deploy:
stage: deploy
image: patrickhuber/choco-linux
script:
- chmod +x ./app/make-nupkg.sh
- ./app/make-nupkg.sh
artifacts:
paths:
- release-builds/*.nuspec
- release-builds/*.nupkg