7 lines
146 B
TypeScript
Raw Normal View History

2024-01-22 21:46:12 -05:00
import * as core from '@actions/core'
import {run} from './merge-artifacts'
run().catch(error => {
core.setFailed((error as Error).message)
})