mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-23 04:25:40 +01:00
Tags to lowercase (#16)
This commit is contained in:
parent
86dc87790d
commit
6a86fe1739
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
@ -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) {
|
||||||
|
@ -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`);
|
||||||
|
Loading…
Reference in New Issue
Block a user