From 0b8860f40670a7c61f8bdc4c63d0f6a5cdae26ee Mon Sep 17 00:00:00 2001 From: Rob Herley Date: Wed, 6 Dec 2023 18:21:33 -0500 Subject: [PATCH] again --- dist/index.js | 10 ---------- src/upload-artifact.ts | 3 --- 2 files changed, 13 deletions(-) diff --git a/dist/index.js b/dist/index.js index 10e50a0..6b9b5a8 100644 --- a/dist/index.js +++ b/dist/index.js @@ -145200,7 +145200,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const process_1 = __importDefault(__nccwpck_require__(77282)); const core = __importStar(__nccwpck_require__(42186)); const artifact_1 = __importDefault(__nccwpck_require__(99860)); const search_1 = __nccwpck_require__(13930); @@ -145246,7 +145245,6 @@ function run() { } catch (error) { core.setFailed(error.message); - process_1.default.exit(1); } }); } @@ -145415,14 +145413,6 @@ module.exports = require("perf_hooks"); /***/ }), -/***/ 77282: -/***/ ((module) => { - -"use strict"; -module.exports = require("process"); - -/***/ }), - /***/ 85477: /***/ ((module) => { diff --git a/src/upload-artifact.ts b/src/upload-artifact.ts index 317b1ff..3706d2f 100644 --- a/src/upload-artifact.ts +++ b/src/upload-artifact.ts @@ -1,5 +1,3 @@ -import process from 'process' - import * as core from '../node_modules/@actions/core/' import artifact, { UploadArtifactOptions @@ -64,7 +62,6 @@ async function run(): Promise { } } catch (error) { core.setFailed((error as Error).message) - process.exit(1) } }