Skip to content

Commit 449b3b9

Browse files
latest - temp using github action
1 parent 24d6d38 commit 449b3b9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ inputs:
44
VERSION:
55
description: specify client version
66
required: false
7-
default: 0.0.83
7+
default: latest
88
CF_API_KEY:
99
description: "Codefresh API KEY"
1010
required: true

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name: codefresh-report-image
2-
version: 0.0.83
2+
version: 0.0.84
33

src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ async function main(argv, env): Promise<void> {
2424
logger.info(`CI provider: ${payload['CF_CI_TYPE']}, job URL: ${payload['CF_WORKFLOW_URL']}`)
2525
}
2626
const eventSource = new EventSource(url, { headers })
27+
eventSource.reconnectInterval = 1000*10000 // prevent retry. client should not issue a reconnect
2728
const waitFor = new Promise<void>((resolve, reject) => {
2829

2930
eventSource.addEventListener('report', function (event) {

0 commit comments

Comments
 (0)