Commit 4b9b955e authored by jtc42's avatar jtc42
Browse files

First draft of deploy CI stage

parent 76c59dd5
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
image: electronuserland/builder:wine
stages:
  - build
  - deploy

build:
  stage: build
  image: electronuserland/builder:wine
  script:
    - npm install
    - npm run release
@@ -9,4 +13,13 @@ build:
      - release-builds/*.exe
      - release-builds/*.deb
      - release-builds/*.AppImage

deploy:
  stage: deploy
  tags:
    - windows
  script:
    - .\app\make-nupkg.ps1
  artifacts:
    paths:
      - release-builds/*.nupkg
 No newline at end of file