Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ export async function saveCache(standalone: boolean) {
await mc.fPutObject(bucket, object, archivePath, {});
core.info("Cache saved to s3 successfully");
} catch (e) {
core.info("Save s3 cache failed: " + e.message);
if (useFallback) {
if (isGhes()) {
core.warning("Cache fallback is not supported on Github Enterpise.");
Expand All @@ -243,6 +242,7 @@ export async function saveCache(standalone: boolean) {
}
} else {
core.debug("skipped fallback cache");
core.warning("Save s3 cache failed: " + e.message);
}
}
} catch (e) {
Expand Down
Loading