1
0
mirror of https://github.com/actions/upload-artifact.git synced 2024-06-13 14:02:32 +08:00
2024-01-19 17:04:39 -05:00

7 lines
145 B
TypeScript

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