You've already forked upload-artifact
mirror of
https://gitee.com/Foldcc/upload-artifact
synced 2026-05-20 21:00:06 +00:00
7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
import * as core from '@actions/core'
|
|
import {run} from './merge-artifacts'
|
|
|
|
run().catch(error => {
|
|
core.setFailed((error as Error).message)
|
|
})
|