mirror of
https://github.com/gradle/actions.git
synced 2025-08-19 23:42:57 +08: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()
|