From a4ae68df39c2c39122e277dcd88560b791366617 Mon Sep 17 00:00:00 2001 From: Zach McElrath Date: Thu, 24 Aug 2023 11:51:48 -0400 Subject: [PATCH] 1.2.0: Fix action invocation --- dist/index.js | 11 +---------- package.json | 2 +- src/main/index.js | 3 +-- 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/dist/index.js b/dist/index.js index 61a8925..0e52f4f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -33449,11 +33449,10 @@ module.exports = v4; /***/ 34110: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const configAwsCreds = __nccwpck_require__(6912) + const updateServiceCount = __nccwpck_require__(28330) async function run() { - await configAwsCreds() await updateServiceCount() } @@ -33506,14 +33505,6 @@ async function run() { module.exports = run; -/***/ }), - -/***/ 6912: -/***/ ((module) => { - -module.exports = eval("require")("./configAwsCreds"); - - /***/ }), /***/ 51639: diff --git a/package.json b/package.json index 07c55fa..599ffd3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "github-action-ecs-scale", - "version": "1.1.0", + "version": "1.2.0", "description": "", "main": "index.js", "scripts": { diff --git a/src/main/index.js b/src/main/index.js index 3078ed3..979059d 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -1,8 +1,7 @@ -const configAwsCreds = require('./configAwsCreds') + const updateServiceCount = require('./updateServiceCount') async function run() { - await configAwsCreds() await updateServiceCount() }