Skip to content

Commit

Permalink
fix undefined function ref for tags input
Browse files Browse the repository at this point in the history
  • Loading branch information
LongLiveCHIEF committed Nov 28, 2020
1 parent 10c7cad commit 0cdad8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 0cdad8b

Please sign in to comment.