mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 17:12:51 +00:00
12 lines
390 B
TypeScript
12 lines
390 B
TypeScript
import * as cacheWrapper from './cache-wrapper'
|
|
import * as cacheDependencies from './cache-dependencies'
|
|
import * as cacheConfiguration from './cache-configuration'
|
|
|
|
// Invoked by GitHub Actions
|
|
export async function run(): Promise<void> {
|
|
await cacheWrapper.cacheWrapperDist()
|
|
await cacheDependencies.cacheDependencies()
|
|
await cacheConfiguration.cacheConfiguration()
|
|
}
|
|
|
|
run()
|