This commit is contained in:
Rob Herley 2023-12-06 19:01:28 -05:00
parent b0b830af8c
commit 09020dd482
No known key found for this signature in database
GPG key ID: D1602042C3543B06
2 changed files with 204 additions and 0 deletions

View file

@ -1,3 +1,5 @@
import log from 'why-is-node-running'
import * as core from '../node_modules/@actions/core/'
import artifact, {
UploadArtifactOptions
@ -62,6 +64,7 @@ async function run(): Promise<void> {
}
} catch (error) {
core.setFailed((error as Error).message)
log()
}
}