mirror of
https://github.com/gradle/actions.git
synced 2026-07-27 14:44:31 +02:00
9 lines
143 B
TypeScript
9 lines
143 B
TypeScript
import * as caches from './caches'
|
|
|
|
// Invoked by GitHub Actions
|
|
export async function run(): Promise<void> {
|
|
await caches.save()
|
|
}
|
|
|
|
run()
|