mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-06-07 16:56:12 +02:00
Add caching of Gradle build configuration cache
This commit is contained in:
parent
806543fb3a
commit
4c7d97cca4
7 changed files with 125 additions and 13 deletions
|
@ -1,5 +1,6 @@
|
|||
import * as exec from '@actions/exec'
|
||||
import * as cacheDependencies from './cache-dependencies'
|
||||
import * as cacheConfiguration from './cache-configuration'
|
||||
|
||||
export async function execute(
|
||||
executable: string,
|
||||
|
@ -7,6 +8,7 @@ export async function execute(
|
|||
argv: string[]
|
||||
): Promise<BuildResult> {
|
||||
await cacheDependencies.restoreCachedDependencies(root)
|
||||
await cacheConfiguration.restoreCachedConfiguration(root)
|
||||
|
||||
let publishing = false
|
||||
let buildScanUrl: string | undefined
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue