1
0
mirror of https://github.com/actions/upload-artifact.git synced 2026-07-12 19:01:41 +00:00
Files
upload-artifact/src/upload/index.ts
T

7 lines
146 B
TypeScript

import * as core from '@actions/core'
import {run} from './upload-artifact'
run().catch(error => {
core.setFailed((error as Error).message)
})