File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ application run:
85
85
tail -1 \
86
86
)"
87
87
- $build_application/bin/typescript-demo-lib
88
+ only :
89
+ - master
88
90
89
91
docker run :
90
92
stage : quality
@@ -100,6 +102,8 @@ docker run:
100
102
script :
101
103
- image="$(docker load --input ./builds/*docker* | cut -d' ' -f3)"
102
104
- docker run "$image"
105
+ only :
106
+ - master
103
107
104
108
linux run :
105
109
stage : quality
@@ -108,6 +112,8 @@ linux run:
108
112
- nix
109
113
script :
110
114
- for f in ./builds/*-linux-*; do "$f"; done
115
+ only :
116
+ - master
111
117
112
118
windows run :
113
119
stage : quality
@@ -117,6 +123,8 @@ windows run:
117
123
- Get-ChildItem -File ./builds/*-win32-* | ForEach {& $_.FullName}
118
124
tags :
119
125
- windows
126
+ only :
127
+ - master
120
128
121
129
# macos is disabled until this repo has access
122
130
# macos run:
@@ -126,6 +134,8 @@ windows run:
126
134
# - nix
127
135
# script:
128
136
# - for f in ./builds/*-macos-*; do "$f"; done
137
+ # only:
138
+ # - master
129
139
# tags:
130
140
# - shared-macos-amd64
131
141
@@ -139,12 +149,15 @@ packages:
139
149
nix-shell -I nixpkgs=./pkgs.nix --packages git gitAndTools.gh --run '
140
150
commit="$(git rev-parse --short HEAD)";
141
151
gh release \
142
- create "$commit" builds/*-linux-* builds/*-win32-* builds/*-macos-* \
152
+ create "$commit" \
153
+ builds/*.closure.gz \
154
+ builds/*-linux-* \
155
+ builds/*-win32-* \o
156
+ builds/*-macos-* \
143
157
--title "Build-$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
144
158
--prerelease \
145
159
--notes "" \
146
160
--repo MatrixAI/TypeScript-Demo-Lib;
147
161
'
148
162
only :
149
163
- master
150
-
You can’t perform that action at this time.
0 commit comments