mirror of
https://git.mirrors.martin98.com/https://github.com/actions/upload-artifact
synced 2026-04-02 19:03:34 +08: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)
|
|
})
|