add merge artifact sub-action

This commit is contained in:
Rob Herley
2024-01-22 21:46:12 -05:00
parent 52899c8c02
commit 997fffa355
11 changed files with 1100 additions and 61 deletions

6
src/merge/index.ts Normal file
View File

@ -0,0 +1,6 @@
import * as core from '@actions/core'
import {run} from './merge-artifacts'
run().catch(error => {
core.setFailed((error as Error).message)
})