39
39
name : Linux
40
40
runs-on : ubuntu-latest
41
41
needs : [setup]
42
+ env :
43
+ INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
44
+ INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
45
+ INTEGRATION_FOLDER : opsgenie-${{ needs.setup.outputs.integration_name }}-${{ needs.setup.outputs.integration_version }}-linux-amd64
42
46
if : github.ref == 'refs/heads/master'
43
47
steps :
44
48
- name : Set up Go 1.x
49
53
- name : Check out code into the Go module directory
50
54
uses : actions/checkout@v2
51
55
- name : Create Output Directory
52
- run : mkdir -p .release/oec-linux
56
+ run : mkdir -p .release/oec-linux/${{ env.INTEGRATION_FOLDER }}
53
57
- name : Download Asset
54
58
uses : i3h/download-release-asset@v1.2.0
55
59
with :
@@ -58,35 +62,29 @@ jobs:
58
62
tag : ${{ github.event.inputs.oec-version }}
59
63
file : oec-linux-amd64-${{ github.event.inputs.oec-version }}.zip
60
64
- name : Extracting Linux Package
61
- run : unzip -qq oec-linux-amd64-${{ github.event.inputs.oec-version }}.zip -d .release/oec-linux
65
+ run : unzip -qq oec-linux-amd64-${{ github.event.inputs.oec-version }}.zip -d .release/oec-linux/${{ env.INTEGRATION_FOLDER }}
62
66
- name : Copy Integration Files
63
- run : cp -R ${{ github.event.inputs.integration }}/. .release/oec-linux
67
+ run : cp -R ${{ github.event.inputs.integration }}/. .release/oec-linux/${{ env.INTEGRATION_FOLDER }}
64
68
- name : Remove http script (todo remove when http version is released)
65
- run : rm -f .release/oec-linux/scripts/http.py
69
+ run : rm -f .release/oec-linux/${{ env.INTEGRATION_FOLDER }}/ scripts/http.py
66
70
- name : Check incomming part exists
67
71
id : check_files
68
72
uses : andstor/file-existence-action@v1
69
73
with :
70
- files : " .release/oec-linux/opsgenie-${{ env.INTEGRATION_NAME }}"
71
- env :
72
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
73
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
74
+ files : " .release/oec-linux/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}"
74
75
- name : " Release Incomming Part"
75
76
working-directory : .release
76
77
if : steps.check_files.outputs.files_exists == 'true'
77
78
run : |
78
- INTEGRATION_PATH=oec-linux/opsgenie-${INTEGRATION_NAME}
79
+ INTEGRATION_PATH=oec-linux/${{ env.INTEGRATION_FOLDER }}/ opsgenie-${{ env. INTEGRATION_NAME } }
79
80
echo ${INTEGRATION_PATH}
80
81
go get -u github.com/alexcesaro/log && \
81
82
cd ${INTEGRATION_PATH} && \
82
83
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
83
- env :
84
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
85
84
- name : Compressing Linux Package
86
- run : zip -qq -j -r .release/oec-linux/opsgenie-${INTEGRATION_NAME}-${INTEGRATION_VERSION}-linux-amd64.zip .release/oec-linux/
87
- env :
88
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
89
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
85
+ run : |
86
+ cd .release/oec-linux/
87
+ zip -r opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-linux-amd64.zip ./${{ env.INTEGRATION_FOLDER }}
90
88
- name : Upload Artifact
91
89
uses : actions/upload-artifact@v2
92
90
with :
96
94
uses : actions/upload-release-asset@v1
97
95
env :
98
96
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
99
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
100
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
101
97
with :
102
98
upload_url : ${{ needs.setup.outputs.upload_url }}
103
99
asset_path : .release/oec-linux/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-linux-amd64.zip
@@ -107,6 +103,9 @@ jobs:
107
103
name : RPM
108
104
runs-on : ubuntu-latest
109
105
needs : [setup]
106
+ env :
107
+ INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
108
+ INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
110
109
if : github.ref == 'refs/heads/master'
111
110
steps :
112
111
- name : Set up Go 1.x
@@ -136,9 +135,6 @@ jobs:
136
135
uses : andstor/file-existence-action@v1
137
136
with :
138
137
files : " .release/oec-rpm/oec-scripts/opsgenie-${{ env.INTEGRATION_NAME }}"
139
- env :
140
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
141
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
142
138
- name : " Release Incomming Part"
143
139
working-directory : .release
144
140
if : steps.check_files.outputs.files_exists == 'true'
@@ -148,9 +144,6 @@ jobs:
148
144
go get -u github.com/alexcesaro/log && \
149
145
cd ${INTEGRATION_PATH} && \
150
146
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
151
- env :
152
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
153
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
154
147
- name : Create RPM Package
155
148
working-directory : .release/oec-rpm
156
149
run : |
@@ -166,41 +159,24 @@ jobs:
166
159
167
160
rpmbuild --target=x86_64 -ba SPECS/oec.spec
168
161
rpmbuild --target=x86_64 -ba SPECS/oec-rhel6.spec
169
- env :
170
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
171
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
172
162
- name : Move RPM Package
173
- env :
174
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
175
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
176
163
run : mv ~/rpmbuild/RPMS/x86_64/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-1.x86_64.rpm .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.x86_64.rpm
177
164
- name : Move RHEL6 Package
178
- env :
179
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
180
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
181
165
run : mv ~/rpmbuild/RPMS/x86_64/opsgenie-${{ env.INTEGRATION_NAME }}-rhel6-${{ env.INTEGRATION_VERSION }}-1.x86_64.rpm .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.rhel6.x86_64.rpm
182
166
- name : Upload RPM Artifact
183
167
uses : actions/upload-artifact@v2
184
- env :
185
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
186
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
187
168
with :
188
169
name : RPM Artifact
189
170
path : .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.x86_64.rpm
190
171
- name : Upload RHEL6 Artifact
191
172
uses : actions/upload-artifact@v2
192
- env :
193
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
194
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
195
173
with :
196
174
name : RHEL6 Artifact
197
175
path : .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.rhel6.x86_64.rpm
198
176
- name : Upload RPM
199
177
uses : actions/upload-release-asset@v1
200
178
env :
201
179
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
202
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
203
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
204
180
with :
205
181
upload_url : ${{ needs.setup.outputs.upload_url }}
206
182
asset_path : .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.x86_64.rpm
@@ -210,8 +186,6 @@ jobs:
210
186
uses : actions/upload-release-asset@v1
211
187
env :
212
188
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
213
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
214
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
215
189
with :
216
190
upload_url : ${{ needs.setup.outputs.upload_url }}
217
191
asset_path : .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.rhel6.x86_64.rpm
@@ -221,6 +195,9 @@ jobs:
221
195
name : DEB
222
196
runs-on : ubuntu-latest
223
197
needs : [setup]
198
+ env :
199
+ INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
200
+ INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
224
201
if : github.ref == 'refs/heads/master'
225
202
steps :
226
203
- name : Set up Go 1.x
@@ -252,21 +229,15 @@ jobs:
252
229
uses : andstor/file-existence-action@v1
253
230
with :
254
231
files : " .release/oec-deb/home/opsgenie/oec/opsgenie-${{ env.INTEGRATION_NAME }}"
255
- env :
256
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
257
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
258
232
- name : " Release Incomming Part"
259
233
working-directory : .release
260
234
if : steps.check_files.outputs.files_exists == 'true'
261
235
run : |
262
- INTEGRATION_PATH=oec-deb/home/opsgenie/oec/opsgenie-${INTEGRATION_NAME}
236
+ INTEGRATION_PATH=oec-deb/home/opsgenie/oec/opsgenie-${{ env. INTEGRATION_NAME } }
263
237
echo ${INTEGRATION_PATH}
264
238
go get -u github.com/alexcesaro/log && \
265
239
cd ${INTEGRATION_PATH} && \
266
240
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
267
- env :
268
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
269
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
270
241
- name : Create Deb Package
271
242
working-directory : .release/
272
243
run : |
@@ -279,28 +250,17 @@ jobs:
279
250
280
251
mkdir deb-package
281
252
dpkg-deb -b oec-deb deb-package
282
- env :
283
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
284
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
285
253
- name : Move Deb Package
286
- env :
287
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
288
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
289
254
run : mv .release/deb-package/*.deb .release/oec-deb/opsgenie-${{ env.INTEGRATION_NAME }}_${{ env.INTEGRATION_VERSION }}_amd64.deb
290
255
- name : Upload Artifact
291
256
uses : actions/upload-artifact@v2
292
257
with :
293
258
name : Debian Artifact
294
259
path : .release/oec-deb/opsgenie-${{ env.INTEGRATION_NAME }}_${{ env.INTEGRATION_VERSION }}_amd64.deb
295
- env :
296
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
297
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
298
260
- name : Upload
299
261
uses : actions/upload-release-asset@v1
300
262
env :
301
263
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
302
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
303
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
304
264
with :
305
265
upload_url : ${{ needs.setup.outputs.upload_url }}
306
266
asset_path : .release/oec-deb/opsgenie-${{ env.INTEGRATION_NAME }}_${{ env.INTEGRATION_VERSION }}_amd64.deb
@@ -310,6 +270,10 @@ jobs:
310
270
name : Windows 32
311
271
runs-on : ubuntu-latest
312
272
needs : [setup]
273
+ env :
274
+ INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
275
+ INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
276
+ INTEGRATION_FOLDER : opsgenie-${{ needs.setup.outputs.integration_name }}-${{ needs.setup.outputs.integration_version }}-win-386
313
277
if : github.ref == 'refs/heads/master'
314
278
steps :
315
279
- name : Set up Go 1.x
@@ -320,7 +284,7 @@ jobs:
320
284
- name : Check out code into the Go module directory
321
285
uses : actions/checkout@v2
322
286
- name : Create Output Directory
323
- run : mkdir -p .release/oec-win32
287
+ run : mkdir -p .release/oec-win32/${{ env.INTEGRATION_FOLDER }}
324
288
- name : Download Asset
325
289
uses : i3h/download-release-asset@v1.2.0
326
290
with :
@@ -329,36 +293,31 @@ jobs:
329
293
tag : ${{ github.event.inputs.oec-version }}
330
294
file : oec-win-386-${{ github.event.inputs.oec-version }}.zip
331
295
- name : Extracting Win32 Package
332
- run : unzip -qq oec-win-386-${{ github.event.inputs.oec-version }}.zip -d .release/oec-win32
296
+ run : unzip -qq oec-win-386-${{ github.event.inputs.oec-version }}.zip -d .release/oec-win32/${{ env.INTEGRATION_FOLDER }}
297
+ - name : Copy OEC Service Conf
298
+ run : cp -R release/oec-builder/oec-win32/oecService.json.example .release/oec-win32/${{ env.INTEGRATION_FOLDER }}
333
299
- name : Copy Integration Files
334
- run : cp -R ${{ github.event.inputs.integration }}/. .release/oec-win32
300
+ run : cp -R ${{ github.event.inputs.integration }}/. .release/oec-win32/${{ env.INTEGRATION_FOLDER }}
335
301
- name : Remove http script (todo remove when http version is released)
336
- run : rm -f .release/oec-win32/scripts/http.py
302
+ run : rm -f .release/oec-win32/${{ env.INTEGRATION_FOLDER }}/ scripts/http.py
337
303
- name : Check incomming part exists
338
304
id : check_files
339
305
uses : andstor/file-existence-action@v1
340
306
with :
341
- files : " .release/oec-win32/opsgenie-${{ env.INTEGRATION_NAME }}"
342
- env :
343
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
344
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
307
+ files : " .release/oec-win32/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}"
345
308
- name : " Release Incomming Part"
346
309
working-directory : .release
347
310
if : steps.check_files.outputs.files_exists == 'true'
348
311
run : |
349
- INTEGRATION_PATH=oec-win32/opsgenie-${INTEGRATION_NAME}
312
+ INTEGRATION_PATH=oec-win32/${{ env.INTEGRATION_FOLDER }}/ opsgenie-${{ env. INTEGRATION_NAME } }
350
313
echo ${INTEGRATION_PATH}
351
314
go get -u github.com/alexcesaro/log && \
352
315
cd ${INTEGRATION_PATH} && \
353
316
GOOS=windows GOARCH=386 go build -o send2opsgenie32.exe send2opsgenie.go
354
- env :
355
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
356
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
357
317
- name : Compressing Win32 Package
358
- run : zip -qq -j -r .release/oec-win32/opsgenie-${INTEGRATION_NAME}-${INTEGRATION_VERSION}-win-386.zip .release/oec-win32/
359
- env :
360
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
361
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
318
+ run : |
319
+ cd .release/oec-win32/
320
+ zip -r ${{ env.INTEGRATION_FOLDER }}.zip ./${{ env.INTEGRATION_FOLDER }}
362
321
- name : Upload Artifact
363
322
uses : actions/upload-artifact@v2
364
323
with :
@@ -368,17 +327,19 @@ jobs:
368
327
uses : actions/upload-release-asset@v1
369
328
env :
370
329
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
371
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
372
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
373
330
with :
374
331
upload_url : ${{ needs.setup.outputs.upload_url }}
375
- asset_path : .release/oec-win32/opsgenie- ${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-win-386 .zip
376
- asset_name : opsgenie- ${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-win-386 .zip
332
+ asset_path : .release/oec-win32/${{ env.INTEGRATION_FOLDER }}.zip
333
+ asset_name : ${{ env.INTEGRATION_FOLDER }}.zip
377
334
asset_content_type : application/zip
378
335
win64 :
379
336
name : Windows 64
380
337
runs-on : ubuntu-latest
381
338
needs : [setup]
339
+ env :
340
+ INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
341
+ INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
342
+ INTEGRATION_FOLDER : opsgenie-${{ needs.setup.outputs.integration_name }}-${{ needs.setup.outputs.integration_version }}-win-amd64
382
343
if : github.ref == 'refs/heads/master'
383
344
steps :
384
345
- name : Set up Go 1.x
@@ -389,7 +350,7 @@ jobs:
389
350
- name : Check out code into the Go module directory
390
351
uses : actions/checkout@v2
391
352
- name : Create Output Directory
392
- run : mkdir -p .release/oec-win64
353
+ run : mkdir -p .release/oec-win64/${{ env.INTEGRATION_FOLDER }}
393
354
- name : Download Asset
394
355
uses : i3h/download-release-asset@v1.2.0
395
356
with :
@@ -398,36 +359,31 @@ jobs:
398
359
tag : ${{ github.event.inputs.oec-version }}
399
360
file : oec-win-amd64-${{ github.event.inputs.oec-version }}.zip
400
361
- name : Extracting Win64 Package
401
- run : unzip -qq oec-win-amd64-${{ github.event.inputs.oec-version }}.zip -d .release/oec-win64
362
+ run : unzip -qq oec-win-amd64-${{ github.event.inputs.oec-version }}.zip -d .release/oec-win64/${{ env.INTEGRATION_FOLDER }}
363
+ - name : Copy OEC Service Conf
364
+ run : cp -R release/oec-builder/oec-win64/oecService.json.example .release/oec-win64/${{ env.INTEGRATION_FOLDER }}
402
365
- name : Copy Integration Files
403
- run : cp -R ${{ github.event.inputs.integration }}/. .release/oec-win64
366
+ run : cp -R ${{ github.event.inputs.integration }}/. .release/oec-win64/${{ env.INTEGRATION_FOLDER }}
404
367
- name : Remove http script (todo remove when http version is released)
405
- run : rm -f .release/oec-win64/scripts/http.py
368
+ run : rm -f .release/oec-win64/${{ env.INTEGRATION_FOLDER }}/ scripts/http.py
406
369
- name : Check incomming part exists
407
370
id : check_files
408
371
uses : andstor/file-existence-action@v1
409
372
with :
410
- files : " .release/oec-win64/opsgenie-${{ env.INTEGRATION_NAME }}"
411
- env :
412
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
413
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
373
+ files : " .release/oec-win64/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}"
414
374
- name : " Release Incomming Part"
415
375
working-directory : .release
416
376
if : steps.check_files.outputs.files_exists == 'true'
417
377
run : |
418
- INTEGRATION_PATH=oec-win64/opsgenie-${INTEGRATION_NAME}
378
+ INTEGRATION_PATH=oec-win64/${{ env.INTEGRATION_FOLDER }}/ opsgenie-${{ env. INTEGRATION_NAME } }
419
379
echo ${INTEGRATION_PATH}
420
380
go get -u github.com/alexcesaro/log && \
421
381
cd ${INTEGRATION_PATH} && \
422
382
GOOS=windows GOARCH=amd64 go build -o send2opsgenie32.exe send2opsgenie.go
423
- env :
424
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
425
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
426
383
- name : Compressing Win 64 Package
427
- run : zip -qq -j -r .release/oec-win64/opsgenie-${INTEGRATION_NAME}-${INTEGRATION_VERSION}-win-amd64.zip .release/oec-win64/
428
- env :
429
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
430
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
384
+ run : |
385
+ cd .release/oec-win64/
386
+ zip -r ${{ env.INTEGRATION_FOLDER }}.zip ./${{ env.INTEGRATION_FOLDER }}
431
387
- name : Upload Artifact
432
388
uses : actions/upload-artifact@v2
433
389
with :
@@ -437,10 +393,8 @@ jobs:
437
393
uses : actions/upload-release-asset@v1
438
394
env :
439
395
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
440
- INTEGRATION_NAME : ${{ needs.setup.outputs.integration_name }}
441
- INTEGRATION_VERSION : ${{ needs.setup.outputs.integration_version }}
442
396
with :
443
397
upload_url : ${{ needs.setup.outputs.upload_url }}
444
- asset_path : .release/oec-win64/opsgenie- ${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-win-amd64 .zip
445
- asset_name : opsgenie- ${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-win-amd64 .zip
398
+ asset_path : .release/oec-win64/${{ env.INTEGRATION_FOLDER }}.zip
399
+ asset_name : ${{ env.INTEGRATION_FOLDER }}.zip
446
400
asset_content_type : application/zip
0 commit comments