mirror of
https://github.com/docker/metadata-action.git
synced 2026-04-19 11:51:10 +03:00
Tags to lowercase (#16)
This commit is contained in:
+1
-1
@@ -142,7 +142,7 @@ function run() {
|
||||
core.info(tag);
|
||||
}
|
||||
core.endGroup();
|
||||
core.setOutput('tags', tags.join(inputs.sepTags));
|
||||
core.setOutput('tags', tags.join(inputs.sepTags).toLowerCase());
|
||||
const labels = meta.labels();
|
||||
core.startGroup(`Docker labels`);
|
||||
for (let label of labels) {
|
||||
|
||||
+1
-1
@@ -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`);
|
||||
|
||||
Reference in New Issue
Block a user