reorganize upload code in prep for merge logic, add more tests

This commit is contained in:
Rob Herley 2024-01-22 15:49:34 -05:00
parent 694cdabd8b
commit 8d531b15a6
No known key found for this signature in database
GPG key ID: D1602042C3543B06
13 changed files with 4169 additions and 1508 deletions

6
src/upload/index.ts Normal file
View file

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