1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| stages:
| - build
| - publish
|
| BuildAndPackage:
| image: opentapio/opentap:beta-ubuntu18.04
| stage: build
| tags: [ docker, gce ]
| script:
| - dotnet restore
| - dotnet build -c Release
| artifacts:
| expire_in: 1 week
| paths:
| - "bin/Release/{0}*.TapPackage"
|
| Publish:
| image: opentapio/opentap:beta-ubuntu18.04
| stage: publish
| tags: [ docker, gce ]
| when: manual
| dependencies:
| - BuildAndPackage
| script:
| - tap package install PackagePublish
| - tap package publish "bin/Release/{0}*.TapPackage"
|
|