Lowercase only on image name (#16)

This commit is contained in:
CrazyMax
2020-11-20 16:19:08 +01:00
parent 6a86fe1739
commit 2860e42b1f
3 changed files with 12 additions and 10 deletions

View File

@@ -39,7 +39,7 @@ async function run() {
core.info(tag);
}
core.endGroup();
core.setOutput('tags', tags.join(inputs.sepTags).toLowerCase());
core.setOutput('tags', tags.join(inputs.sepTags));
const labels: Array<string> = meta.labels();
core.startGroup(`Docker labels`);