diff --git a/src/init-action.ts b/src/init-action.ts index 4fe53b6fe..951f35c66 100644 --- a/src/init-action.ts +++ b/src/init-action.ts @@ -287,8 +287,13 @@ async function compileQueries( } } // Compute hash - const hash = "abc"; - return hash; + const globHash = require("glob-hash"); + const finalHash = await globHash({ + include: [`${config.tempDir}/**/.cache/data`], + files: true, + }); + logger.info(finalHash); + return finalHash; } void runWrapper();