Skip to content

Commit 9daa803

Browse files
committed
πŸ› Actually print the status
1 parent f7d7672 commit 9daa803

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

β€Ždist/action.jsβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19938,7 +19938,9 @@ void (async () => {
1993819938
)) {
1993919939
const nextStatus = await getDeploymentStatus(uuid2);
1994019940
if (nextStatus.status !== status[uuid2]) {
19941-
(0, import_core.info)(`Deployment ${nextStatus.application_name} (${uuid2}) status: ${nextStatus}`);
19941+
(0, import_core.info)(
19942+
`Deployment ${nextStatus.application_name} (${uuid2}) status: ${nextStatus.status}`
19943+
);
1994219944
status[uuid2] = nextStatus.status;
1994319945
}
1994419946
if (status[uuid2] === "failed") {

β€Žsrc/action.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ void (async () => {
115115
const nextStatus = await getDeploymentStatus(uuid);
116116
if (nextStatus.status !== status[uuid]) {
117117
info(
118-
`Deployment ${nextStatus.application_name} (${uuid}) status: ${nextStatus}`,
118+
`Deployment ${nextStatus.application_name} (${uuid}) status: ${nextStatus.status}`,
119119
);
120120
status[uuid] = nextStatus.status;
121121
}

0 commit comments

Comments
Β (0)