1
0
mirror of https://github.com/christopherHX/gitea-upload-artifact synced 2026-05-10 19:11:18 +02: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)
})