mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 09:02:50 +00:00
Log completion of post-action step
This commit is contained in:
parent
334a4b8d4d
commit
ae24bf6608
1 changed files with 3 additions and 1 deletions
|
@ -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.')
|
||||
return
|
||||
}
|
||||
core.info('In final post-action step, saving state and writing summary')
|
||||
core.info('In post-action step')
|
||||
|
||||
const buildResults = loadBuildResults()
|
||||
|
||||
|
@ -63,6 +63,8 @@ export async function complete(): Promise<void> {
|
|||
}
|
||||
|
||||
await dependencyGraph.complete(params.getDependencyGraphOption())
|
||||
|
||||
core.info('Completed post-action step')
|
||||
}
|
||||
|
||||
async function determineGradleUserHome(): Promise<string> {
|
||||
|
|
Loading…
Reference in a new issue