mirror of
https://github.com/ChristopherHX/gitea-upload-artifact.git
synced 2026-03-12 18:22:56 +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)
|
|
})
|