Tags to lowercase (#16)

This commit is contained in:
CrazyMax 2020-11-20 15:54:36 +01:00
parent 86dc87790d
commit 6a86fe1739
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View File

@ -142,7 +142,7 @@ function run() {
core.info(tag); core.info(tag);
} }
core.endGroup(); core.endGroup();
core.setOutput('tags', tags.join(inputs.sepTags)); core.setOutput('tags', tags.join(inputs.sepTags).toLowerCase());
const labels = meta.labels(); const labels = meta.labels();
core.startGroup(`Docker labels`); core.startGroup(`Docker labels`);
for (let label of labels) { for (let label of labels) {

View File

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