1
0
mirror of https://github.com/actions/upload-artifact.git synced 2025-12-06 08:27:53 +01:00
Files
upload-artifact/src/merge/index.ts
2024-01-22 21:46:12 -05:00

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)
})