upload-artifact/src/merge/index.ts

7 lines
145 B
TypeScript
Raw Normal View History

2024-01-19 11:02:59 -05:00
import * as core from '@actions/core'
2024-01-19 17:04:39 -05:00
import {run} from './merge-artifact'
2024-01-19 11:02:59 -05:00
2024-01-19 17:04:39 -05:00
run().catch(error => {
core.setFailed((error as Error).message)
})