First draft of deploy CI stage
This commit is contained in:
parent
76c59dd510
commit
4b9b955e3f
1 changed files with 14 additions and 1 deletions
|
|
@ -1,6 +1,10 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue