gradle-build-action/src/post.ts

9 lines
174 B
TypeScript
Raw Normal View History

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