From 6a86fe17391b1be7ce051592e4b86f50be5d7b8d Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 20 Nov 2020 15:54:36 +0100 Subject: [PATCH] Tags to lowercase (#16) --- dist/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 81db06c..a374c0e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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) { diff --git a/src/main.ts b/src/main.ts index d61b4fc..e17efbd 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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 = meta.labels(); core.startGroup(`Docker labels`);