From be3385a5dd29d918c305292c1870cd33e75ba421 Mon Sep 17 00:00:00 2001 From: Jyotsna Date: Wed, 4 Nov 2020 16:53:29 +0530 Subject: [PATCH] Edited label key Signed-off-by: Jyotsna --- 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 3a8ee01..b439e23 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2391,7 +2391,7 @@ function run() { //Add dockerfile path to label let dockerfilePath = core.getInput('file') || 'Dockerfile'; inputs.labels.push(`org.opencontainers.image.source=https://github.com/${github.context.repo.owner}/${github.context.repo.repo}`); - inputs.labels.push(`dockerfilePath=${dockerfilePath}`); + inputs.labels.push(`dockerfile-path=${dockerfilePath}`); core.info(`🏃 Starting build...`); const args = yield context.getArgs(inputs, defContext, buildxVersion); yield exec.exec('docker', args).then(res => { diff --git a/src/main.ts b/src/main.ts index b4a2b2e..063afaa 100644 --- a/src/main.ts +++ b/src/main.ts @@ -29,7 +29,7 @@ async function run(): Promise { inputs.labels.push( `org.opencontainers.image.source=https://github.com/${github.context.repo.owner}/${github.context.repo.repo}` ); - inputs.labels.push(`dockerfilePath=${dockerfilePath}`); + inputs.labels.push(`dockerfile-path=${dockerfilePath}`); core.info(`🏃 Starting build...`); const args: string[] = await context.getArgs(inputs, defContext, buildxVersion);