1
0
Fork 0
mirror of https://gitea.com/actions/upload-artifact.git synced 2024-08-16 09:49:51 +02:00
upload-artifact/src/merge/index.ts
2024-01-19 17:04:39 -05:00

6 lines
145 B
TypeScript

import * as core from '@actions/core'
import {run} from './merge-artifact'
run().catch(error => {
core.setFailed((error as Error).message)
})