diff --git a/dist/index.js b/dist/index.js index bc83984..ebc6252 100644 --- a/dist/index.js +++ b/dist/index.js @@ -9,7 +9,7 @@ const core = __webpack_require__(5330) const github = __webpack_require__(2943) const {taggingStrategy} = __webpack_require__(1457) -const inputTags = getInput('tags') +const inputTags = core.getInput('tags') const tagName = core.getInput('tag_name') const latest = core.getInput('latest') const imageName = core.getInput('image_name') diff --git a/index.js b/index.js index 339d7aa..3933cf6 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ const core = require('@actions/core') const github = require('@actions/github') const {taggingStrategy} = require('./src/taggingStrategy') -const inputTags = getInput('tags') +const inputTags = core.getInput('tags') const tagName = core.getInput('tag_name') const latest = core.getInput('latest') const imageName = core.getInput('image_name')