Log completion of post-action step

This commit is contained in:
daz 2023-12-20 17:57:25 -07:00
parent 334a4b8d4d
commit ae24bf6608
No known key found for this signature in database

View file

@ -46,7 +46,7 @@ export async function complete(): Promise<void> {
core.info('Gradle setup post-action only performed for first gradle-build-action step in workflow.') core.info('Gradle setup post-action only performed for first gradle-build-action step in workflow.')
return return
} }
core.info('In final post-action step, saving state and writing summary') core.info('In post-action step')
const buildResults = loadBuildResults() const buildResults = loadBuildResults()
@ -63,6 +63,8 @@ export async function complete(): Promise<void> {
} }
await dependencyGraph.complete(params.getDependencyGraphOption()) await dependencyGraph.complete(params.getDependencyGraphOption())
core.info('Completed post-action step')
} }
async function determineGradleUserHome(): Promise<string> { async function determineGradleUserHome(): Promise<string> {