We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3e878f commit f06e1e4Copy full SHA for f06e1e4
src/caching/github-actions-cache.ts
@@ -413,6 +413,10 @@ ${blockIds.map((blockId) => ` <Committed>${blockId}</Committed>`).join('\n')}
413
if (!this.#maybeHandleServiceDown(r, script)) {
414
return false;
415
}
416
+ let responseData = '';
417
+ r.value.on('data', (chunk: string) => (responseData += chunk));
418
+ await new Promise((resolve) => r.value.on('end', resolve));
419
+ console.log('DONE', r.value.statusCode, responseData);
420
return true;
421
} finally {
422
await tarballHandle.close();
0 commit comments