Skip to content

Commit

Permalink
Fix parameter name in index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
manics committed Jun 4, 2021
1 parent cd4b725 commit dab048c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ async function run() {
const githubToken = core.getInput("githubToken");
const prefix = core.getInput("prefix");
const defaultTag = core.getInput("defaultTag");
const regexAllowed = core.getInput("regexAllowed");
const branchRegex = core.getInput("branchRegex");

core.debug(JSON.stringify(github.context));
const allTags = await calculateTags(
Expand All @@ -154,7 +154,7 @@ async function run() {
github.context.payload.ref,
prefix,
defaultTag,
regexAllowed
branchRegex
);

core.info(allTags);
Expand Down

0 comments on commit dab048c

Please sign in to comment.