mirror of
https://github.com/actions/upload-artifact.git
synced 2025-06-09 10:21:20 +00:00
7 lines
145 B
TypeScript
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)
|
|
})
|