gradle-build-action/src/post.ts

13 lines
390 B
TypeScript
Raw Normal View History

2020-06-14 16:46:49 +00:00
import * as cacheWrapper from './cache-wrapper'
import * as cacheDependencies from './cache-dependencies'
import * as cacheConfiguration from './cache-configuration'
2020-06-13 11:34:07 +00:00
// Invoked by GitHub Actions
2020-06-13 11:54:27 +00:00
export async function run(): Promise<void> {
2020-06-14 16:46:49 +00:00
await cacheWrapper.cacheWrapperDist()
await cacheDependencies.cacheDependencies()
await cacheConfiguration.cacheConfiguration()
2020-06-13 11:34:07 +00:00
}
2020-06-13 11:44:30 +00:00
run()