diff --git a/dist/index.js b/dist/index.js index 1d32713..3a8ee01 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2390,7 +2390,8 @@ function run() { let inputs = yield context.getInputs(defContext); //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}/${dockerfilePath}`); + inputs.labels.push(`org.opencontainers.image.source=https://github.com/${github.context.repo.owner}/${github.context.repo.repo}`); + inputs.labels.push(`dockerfilePath=${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 9183654..b4a2b2e 100644 --- a/src/main.ts +++ b/src/main.ts @@ -27,8 +27,9 @@ async function run(): Promise { //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}/${dockerfilePath}` + `org.opencontainers.image.source=https://github.com/${github.context.repo.owner}/${github.context.repo.repo}` ); + inputs.labels.push(`dockerfilePath=${dockerfilePath}`); core.info(`🏃 Starting build...`); const args: string[] = await context.getArgs(inputs, defContext, buildxVersion);