2
0
mirror of https://gitea.com/actions/upload-artifact.git synced 2025-11-02 10:08:15 +07:00
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)
})