Skip to content

Commit

Permalink
Merge pull request #88 from stuartleeks/sl/fix-typo-rebuild
Browse files Browse the repository at this point in the history
build dist after typo fix
  • Loading branch information
stuartleeks authored Jul 8, 2021
2 parents 713d488 + f619b14 commit 3684470
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion github-action/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion github-action/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion github-action/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function runPost() {
core.info(`Image push skipped because GITHUB_REF (${ref}) is not in refFilterForPush`);
return;
}
const eventName = process.env.GETHUB_EVENT_NAME;
const eventName = process.env.GITHUB_EVENT_NAME;
if (eventFilterForPush.length !== 0 && // empty filter allows all
!eventFilterForPush.some(s => s === eventName)) {
core.info(`Image push skipped because GITHUB_EVENT_NAME (${eventName}) is not in eventFilterForPush`);
Expand Down

0 comments on commit 3684470

Please sign in to comment.