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:
parent
6a86fe1739
commit
2860e42b1f
3 changed files with 12 additions and 10 deletions
|
@ -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`);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue