From 0cdad8b46acfea2ce3e560435ceaec104f8a7f93 Mon Sep 17 00:00:00 2001 From: Brian Vanderbusch Date: Sat, 28 Nov 2020 12:45:18 -0600 Subject: [PATCH] fix undefined function ref for tags input --- dist/index.js | 2 +- index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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')