gradle-build-action/src/post.ts

17 lines
359 B
TypeScript
Raw Normal View History

import * as core from '@actions/core'
import * as caches from './caches'
2020-06-13 07:34:07 -04:00
// Invoked by GitHub Actions
2020-06-13 07:54:27 -04:00
export async function run(): Promise<void> {
try {
await caches.save()
} catch (error) {
core.setFailed(String(error))
if (error instanceof Error && error.stack) {
core.info(error.stack)
}
}
2020-06-13 07:34:07 -04:00
}
2020-06-13 07:44:30 -04:00
run()