Skip to content

Commit

Permalink
kaniko digest
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Chavkov committed Feb 13, 2024
1 parent aa630bd commit 125faf6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export const run = async (inputs: Inputs): Promise<Outputs> => {
await core.group(`Pulling ${inputs.executor}`, () =>
withTime('Pulled', () => exec.exec('docker', ['pull', '-q', inputs.executor])),
)
const digest = await readContent("${outputsDir}/digest")
console.log(`${outputsDir}`)
const digest = await readContent(`${outputsDir}/digest`)
core.info(digest)
return { digest }
}
Expand Down

0 comments on commit 125faf6

Please sign in to comment.