From 6253cc74afa6d7098acb37f7d1b0e35e66c9e9d5 Mon Sep 17 00:00:00 2001 From: Rob Herley Date: Wed, 6 Dec 2023 18:11:45 -0500 Subject: [PATCH] kill --- src/upload-artifact.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/upload-artifact.ts b/src/upload-artifact.ts index 3706d2f..317b1ff 100644 --- a/src/upload-artifact.ts +++ b/src/upload-artifact.ts @@ -1,3 +1,5 @@ +import process from 'process' + import * as core from '../node_modules/@actions/core/' import artifact, { UploadArtifactOptions @@ -62,6 +64,7 @@ async function run(): Promise { } } catch (error) { core.setFailed((error as Error).message) + process.exit(1) } }