Skip to content

Commit

Permalink
1.2.0: Fix action invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
zachelrath committed Aug 24, 2023
1 parent b83ce45 commit a4ae68d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
11 changes: 1 addition & 10 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}

Expand Down Expand Up @@ -33506,14 +33505,6 @@ async function run() {

module.exports = run;

/***/ }),

/***/ 6912:
/***/ ((module) => {

module.exports = eval("require")("./configAwsCreds");


/***/ }),

/***/ 51639:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-action-ecs-scale",
"version": "1.1.0",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions src/main/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
const configAwsCreds = require('./configAwsCreds')

const updateServiceCount = require('./updateServiceCount')

async function run() {
await configAwsCreds()
await updateServiceCount()
}

Expand Down

0 comments on commit a4ae68d

Please sign in to comment.