Skip to content

Commit

Permalink
Tags to lowercase (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Nov 20, 2020
1 parent 86dc877 commit 6a86fe1
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

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

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function run() {
core.info(tag);
}
core.endGroup();
core.setOutput('tags', tags.join(inputs.sepTags));
core.setOutput('tags', tags.join(inputs.sepTags).toLowerCase());

const labels: Array<string> = meta.labels();
core.startGroup(`Docker labels`);
Expand Down

0 comments on commit 6a86fe1

Please sign in to comment.