diff --git a/src/cache.ts b/src/cache.ts index 0aa069a..7168263 100644 --- a/src/cache.ts +++ b/src/cache.ts @@ -103,7 +103,7 @@ export class Cache { public static async post(): Promise { const state = core.getState(Cache.POST_CACHE_KEY); if (!state) { - core.debug(`Cache.post no state`); + core.info(`State not set`); return Promise.resolve(undefined); } let cacheState: CachePostState; diff --git a/src/index.ts b/src/index.ts index c43fe48..9c23eac 100644 --- a/src/index.ts +++ b/src/index.ts @@ -42,6 +42,8 @@ export async function run(main: () => Promise, post?: () => Promise) if (post) { await post(); } - await Cache.post(); + await core.group(`Post cache`, async () => { + await Cache.post(); + }); } }