mirror of
https://code.forgejo.org/actions/upload-artifact
synced 2025-06-11 05:42:25 +02: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)
|
||
|
})
|