mirror of
https://github.com/actions/upload-artifact.git
synced 2025-04-01 17:26:34 +00:00
6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import * as core from '@actions/core'
|
|
import {run} from './merge-artifacts'
|
|
|
|
run().catch(error => {
|
|
core.setFailed((error as Error).message)
|
|
})
|