Skip to content

Commit 519ad3d

Browse files
committed
fix: improve logging around failed cumulative updates
1 parent 0cf843e commit 519ad3d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/utils.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,12 @@ export async function downloadUpdateInstaller(config: VersionConfig): Promise<st
194194
if (link) {
195195
downloadLink = link;
196196
}
197+
core.info('Unable to find download link in body');
198+
core.debug(body);
197199
}
198200
if (!downloadLink) {
199201
core.warning('Unable to download cumulative updates');
202+
core.info(`Response code: ${res.message.statusCode}`);
200203
return '';
201204
}
202205
}

0 commit comments

Comments
 (0)