Skip to content

Commit 2095fc3

Browse files
Merge pull request #58 from opsgenie/fix-release-faults
Fix release faults
2 parents 0f0b709 + cd4e60e commit 2095fc3

File tree

2 files changed

+55
-101
lines changed

2 files changed

+55
-101
lines changed

.github/workflows/release.yml

Lines changed: 54 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
name: Linux
4040
runs-on: ubuntu-latest
4141
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
4246
if: github.ref == 'refs/heads/master'
4347
steps:
4448
- name: Set up Go 1.x
@@ -49,7 +53,7 @@ jobs:
4953
- name: Check out code into the Go module directory
5054
uses: actions/checkout@v2
5155
- name: Create Output Directory
52-
run: mkdir -p .release/oec-linux
56+
run: mkdir -p .release/oec-linux/${{ env.INTEGRATION_FOLDER }}
5357
- name: Download Asset
5458
uses: i3h/download-release-asset@v1.2.0
5559
with:
@@ -58,35 +62,29 @@ jobs:
5862
tag: ${{ github.event.inputs.oec-version }}
5963
file: oec-linux-amd64-${{ github.event.inputs.oec-version }}.zip
6064
- 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 }}
6266
- 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 }}
6468
- 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
6670
- name: Check incomming part exists
6771
id: check_files
6872
uses: andstor/file-existence-action@v1
6973
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 }}"
7475
- name: "Release Incomming Part"
7576
working-directory: .release
7677
if: steps.check_files.outputs.files_exists == 'true'
7778
run: |
78-
INTEGRATION_PATH=oec-linux/opsgenie-${INTEGRATION_NAME}
79+
INTEGRATION_PATH=oec-linux/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}
7980
echo ${INTEGRATION_PATH}
8081
go get -u github.com/alexcesaro/log && \
8182
cd ${INTEGRATION_PATH} && \
8283
GOOS=linux GOARCH=amd64 go build -o send2opsgenie send2opsgenie.go
83-
env:
84-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
8584
- 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 }}
9088
- name: Upload Artifact
9189
uses: actions/upload-artifact@v2
9290
with:
@@ -96,8 +94,6 @@ jobs:
9694
uses: actions/upload-release-asset@v1
9795
env:
9896
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
99-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
100-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
10197
with:
10298
upload_url: ${{ needs.setup.outputs.upload_url }}
10399
asset_path: .release/oec-linux/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}-linux-amd64.zip
@@ -107,6 +103,9 @@ jobs:
107103
name: RPM
108104
runs-on: ubuntu-latest
109105
needs: [setup]
106+
env:
107+
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
108+
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
110109
if: github.ref == 'refs/heads/master'
111110
steps:
112111
- name: Set up Go 1.x
@@ -136,9 +135,6 @@ jobs:
136135
uses: andstor/file-existence-action@v1
137136
with:
138137
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 }}
142138
- name: "Release Incomming Part"
143139
working-directory: .release
144140
if: steps.check_files.outputs.files_exists == 'true'
@@ -148,9 +144,6 @@ jobs:
148144
go get -u github.com/alexcesaro/log && \
149145
cd ${INTEGRATION_PATH} && \
150146
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 }}
154147
- name: Create RPM Package
155148
working-directory: .release/oec-rpm
156149
run: |
@@ -166,41 +159,24 @@ jobs:
166159
167160
rpmbuild --target=x86_64 -ba SPECS/oec.spec
168161
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 }}
172162
- name: Move RPM Package
173-
env:
174-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
175-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
176163
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
177164
- name: Move RHEL6 Package
178-
env:
179-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
180-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
181165
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
182166
- name: Upload RPM Artifact
183167
uses: actions/upload-artifact@v2
184-
env:
185-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
186-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
187168
with:
188169
name: RPM Artifact
189170
path: .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.x86_64.rpm
190171
- name: Upload RHEL6 Artifact
191172
uses: actions/upload-artifact@v2
192-
env:
193-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
194-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
195173
with:
196174
name: RHEL6 Artifact
197175
path: .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.rhel6.x86_64.rpm
198176
- name: Upload RPM
199177
uses: actions/upload-release-asset@v1
200178
env:
201179
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
202-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
203-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
204180
with:
205181
upload_url: ${{ needs.setup.outputs.upload_url }}
206182
asset_path: .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.x86_64.rpm
@@ -210,8 +186,6 @@ jobs:
210186
uses: actions/upload-release-asset@v1
211187
env:
212188
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
213-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
214-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
215189
with:
216190
upload_url: ${{ needs.setup.outputs.upload_url }}
217191
asset_path: .release/oec-rpm/opsgenie-${{ env.INTEGRATION_NAME }}-${{ env.INTEGRATION_VERSION }}.rhel6.x86_64.rpm
@@ -221,6 +195,9 @@ jobs:
221195
name: DEB
222196
runs-on: ubuntu-latest
223197
needs: [setup]
198+
env:
199+
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
200+
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
224201
if: github.ref == 'refs/heads/master'
225202
steps:
226203
- name: Set up Go 1.x
@@ -252,21 +229,15 @@ jobs:
252229
uses: andstor/file-existence-action@v1
253230
with:
254231
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 }}
258232
- name: "Release Incomming Part"
259233
working-directory: .release
260234
if: steps.check_files.outputs.files_exists == 'true'
261235
run: |
262-
INTEGRATION_PATH=oec-deb/home/opsgenie/oec/opsgenie-${INTEGRATION_NAME}
236+
INTEGRATION_PATH=oec-deb/home/opsgenie/oec/opsgenie-${{ env.INTEGRATION_NAME }}
263237
echo ${INTEGRATION_PATH}
264238
go get -u github.com/alexcesaro/log && \
265239
cd ${INTEGRATION_PATH} && \
266240
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 }}
270241
- name: Create Deb Package
271242
working-directory: .release/
272243
run: |
@@ -279,28 +250,17 @@ jobs:
279250
280251
mkdir deb-package
281252
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 }}
285253
- name: Move Deb Package
286-
env:
287-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
288-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
289254
run: mv .release/deb-package/*.deb .release/oec-deb/opsgenie-${{ env.INTEGRATION_NAME }}_${{ env.INTEGRATION_VERSION }}_amd64.deb
290255
- name: Upload Artifact
291256
uses: actions/upload-artifact@v2
292257
with:
293258
name: Debian Artifact
294259
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 }}
298260
- name: Upload
299261
uses: actions/upload-release-asset@v1
300262
env:
301263
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
302-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
303-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
304264
with:
305265
upload_url: ${{ needs.setup.outputs.upload_url }}
306266
asset_path: .release/oec-deb/opsgenie-${{ env.INTEGRATION_NAME }}_${{ env.INTEGRATION_VERSION }}_amd64.deb
@@ -310,6 +270,10 @@ jobs:
310270
name: Windows 32
311271
runs-on: ubuntu-latest
312272
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
313277
if: github.ref == 'refs/heads/master'
314278
steps:
315279
- name: Set up Go 1.x
@@ -320,7 +284,7 @@ jobs:
320284
- name: Check out code into the Go module directory
321285
uses: actions/checkout@v2
322286
- name: Create Output Directory
323-
run: mkdir -p .release/oec-win32
287+
run: mkdir -p .release/oec-win32/${{ env.INTEGRATION_FOLDER }}
324288
- name: Download Asset
325289
uses: i3h/download-release-asset@v1.2.0
326290
with:
@@ -329,36 +293,31 @@ jobs:
329293
tag: ${{ github.event.inputs.oec-version }}
330294
file: oec-win-386-${{ github.event.inputs.oec-version }}.zip
331295
- 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 }}
333299
- 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 }}
335301
- 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
337303
- name: Check incomming part exists
338304
id: check_files
339305
uses: andstor/file-existence-action@v1
340306
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 }}"
345308
- name: "Release Incomming Part"
346309
working-directory: .release
347310
if: steps.check_files.outputs.files_exists == 'true'
348311
run: |
349-
INTEGRATION_PATH=oec-win32/opsgenie-${INTEGRATION_NAME}
312+
INTEGRATION_PATH=oec-win32/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}
350313
echo ${INTEGRATION_PATH}
351314
go get -u github.com/alexcesaro/log && \
352315
cd ${INTEGRATION_PATH} && \
353316
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 }}
357317
- 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 }}
362321
- name: Upload Artifact
363322
uses: actions/upload-artifact@v2
364323
with:
@@ -368,17 +327,19 @@ jobs:
368327
uses: actions/upload-release-asset@v1
369328
env:
370329
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
371-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
372-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
373330
with:
374331
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
377334
asset_content_type: application/zip
378335
win64:
379336
name: Windows 64
380337
runs-on: ubuntu-latest
381338
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
382343
if: github.ref == 'refs/heads/master'
383344
steps:
384345
- name: Set up Go 1.x
@@ -389,7 +350,7 @@ jobs:
389350
- name: Check out code into the Go module directory
390351
uses: actions/checkout@v2
391352
- name: Create Output Directory
392-
run: mkdir -p .release/oec-win64
353+
run: mkdir -p .release/oec-win64/${{ env.INTEGRATION_FOLDER }}
393354
- name: Download Asset
394355
uses: i3h/download-release-asset@v1.2.0
395356
with:
@@ -398,36 +359,31 @@ jobs:
398359
tag: ${{ github.event.inputs.oec-version }}
399360
file: oec-win-amd64-${{ github.event.inputs.oec-version }}.zip
400361
- 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 }}
402365
- 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 }}
404367
- 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
406369
- name: Check incomming part exists
407370
id: check_files
408371
uses: andstor/file-existence-action@v1
409372
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 }}"
414374
- name: "Release Incomming Part"
415375
working-directory: .release
416376
if: steps.check_files.outputs.files_exists == 'true'
417377
run: |
418-
INTEGRATION_PATH=oec-win64/opsgenie-${INTEGRATION_NAME}
378+
INTEGRATION_PATH=oec-win64/${{ env.INTEGRATION_FOLDER }}/opsgenie-${{ env.INTEGRATION_NAME }}
419379
echo ${INTEGRATION_PATH}
420380
go get -u github.com/alexcesaro/log && \
421381
cd ${INTEGRATION_PATH} && \
422382
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 }}
426383
- 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 }}
431387
- name: Upload Artifact
432388
uses: actions/upload-artifact@v2
433389
with:
@@ -437,10 +393,8 @@ jobs:
437393
uses: actions/upload-release-asset@v1
438394
env:
439395
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
440-
INTEGRATION_NAME: ${{ needs.setup.outputs.integration_name }}
441-
INTEGRATION_VERSION: ${{ needs.setup.outputs.integration_version }}
442396
with:
443397
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
446400
asset_content_type: application/zip

release/oec-builder/oec-win32/oecService.json.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Name": "OEC Service",
33
"DisplayName": "OEC Service",
44
"Description": "Run the OEC Service",
5-
"OECPath" : "C:\\opsgenie\\opsgenie-oec\\OpsgenieEdgeConnector64.exe",
5+
"OECPath" : "C:\\opsgenie\\opsgenie-oec\\OpsgenieEdgeConnector32.exe",
66
"Args" : ["-oec-metrics", "7070"],
77
"Env": [
88
"OEC_CONF_LOCAL_FILEPATH=C:\\opsgenie\\opsgenie-oec\\conf\\config.json",

0 commit comments

Comments
 (0)