mirror of
https://code.forgejo.org/actions/upload-artifact.git
synced 2026-03-26 09:48:05 +03:00
6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
import * as core from '@actions/core'
|
|
import {run} from './merge-artifact'
|
|
|
|
run().catch(error => {
|
|
core.setFailed((error as Error).message)
|
|
})
|