2
0
Fork 0
mirror of https://code.forgejo.org/docker/metadata-action.git synced 2025-09-16 01:36:57 +00:00

Lowercase only on image name (#16)

This commit is contained in:
CrazyMax 2020-11-20 16:19:08 +01:00
parent 6a86fe1739
commit 2860e42b1f
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
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`);