mirror of
https://github.com/docker/build-push-action.git
synced 2025-04-04 06:00:08 +02:00
Added new trace-Data input. changed label value to link to dockerfile
Signed-off-by: Jyotsna <Josh-01@github.com>
This commit is contained in:
parent
e2bf0d0cc1
commit
cf7e6e140f
3 changed files with 20 additions and 26 deletions
|
@ -70,7 +70,10 @@ inputs:
|
||||||
ssh:
|
ssh:
|
||||||
description: "List of SSH agent socket or keys to expose to the build"
|
description: "List of SSH agent socket or keys to expose to the build"
|
||||||
required: false
|
required: false
|
||||||
|
trace-data:
|
||||||
|
description: "Flag to indicate whether link to dockerfile is added to image labels or not"
|
||||||
|
default: 'false'
|
||||||
|
required: false
|
||||||
outputs:
|
outputs:
|
||||||
digest:
|
digest:
|
||||||
description: 'Image content-addressable identifier also called a digest'
|
description: 'Image content-addressable identifier also called a digest'
|
||||||
|
|
20
dist/index.js
generated
vendored
20
dist/index.js
generated
vendored
|
@ -12083,20 +12083,16 @@ function getInputs(defaultContext) {
|
||||||
cacheTo: yield getInputList('cache-to', true),
|
cacheTo: yield getInputList('cache-to', true),
|
||||||
secrets: yield getInputList('secrets', true),
|
secrets: yield getInputList('secrets', true),
|
||||||
githubToken: core.getInput('github-token'),
|
githubToken: core.getInput('github-token'),
|
||||||
ssh: yield getInputList('ssh')
|
ssh: yield getInputList('ssh'),
|
||||||
|
traceData: core.getInput('trace-data') || 'false'
|
||||||
};
|
};
|
||||||
if (userInputs.load == true ||
|
if (userInputs.traceData == 'true' && //if user explictly asks to add traceData
|
||||||
userInputs.push == true ||
|
(userInputs.load == true ||
|
||||||
userInputs.outputs.find(val => val.indexOf('type=image') > -1 || val.indexOf('type=registry') > -1)) {
|
userInputs.push == true ||
|
||||||
//Add repo as source-label if not already supplied by user
|
userInputs.outputs.find(val => val.indexOf('type=image') > -1 || val.indexOf('type=registry') > -1))) {
|
||||||
const sourceLabelKey = 'org.opencontainers.image.source';
|
//Add link to dockerfile as label
|
||||||
if (userInputs.labels.find(val => val.startsWith(sourceLabelKey) == true) == null) {
|
|
||||||
const githubOwnerRepoUrl = defaultContext.split('#')[0];
|
|
||||||
userInputs.labels.push(`${sourceLabelKey}=${githubOwnerRepoUrl}`);
|
|
||||||
}
|
|
||||||
//Add dockerfile path as label
|
|
||||||
let dockerfilePath = userInputs.file;
|
let dockerfilePath = userInputs.file;
|
||||||
userInputs.labels.push(`dockerfile-path=${dockerfilePath}`);
|
userInputs.labels.push(`dockerfile-path=${defaultContext}/${dockerfilePath}`);
|
||||||
}
|
}
|
||||||
return userInputs;
|
return userInputs;
|
||||||
});
|
});
|
||||||
|
|
|
@ -73,24 +73,19 @@ export async function getInputs(defaultContext: string): Promise<Inputs> {
|
||||||
cacheTo: await getInputList('cache-to', true),
|
cacheTo: await getInputList('cache-to', true),
|
||||||
secrets: await getInputList('secrets', true),
|
secrets: await getInputList('secrets', true),
|
||||||
githubToken: core.getInput('github-token'),
|
githubToken: core.getInput('github-token'),
|
||||||
ssh: await getInputList('ssh')
|
ssh: await getInputList('ssh'),
|
||||||
|
traceData: core.getInput('trace-data') || 'false'
|
||||||
};
|
};
|
||||||
|
|
||||||
if (
|
if (
|
||||||
userInputs.load == true ||
|
userInputs.traceData == 'true' && //if user explictly asks to add traceData
|
||||||
userInputs.push == true ||
|
(userInputs.load == true ||
|
||||||
userInputs.outputs.find(val => val.indexOf('type=image') > -1 || val.indexOf('type=registry') > -1)
|
userInputs.push == true ||
|
||||||
|
userInputs.outputs.find(val => val.indexOf('type=image') > -1 || val.indexOf('type=registry') > -1))
|
||||||
) {
|
) {
|
||||||
//Add repo as source-label if not already supplied by user
|
//Add link to dockerfile as label
|
||||||
const sourceLabelKey = 'org.opencontainers.image.source';
|
|
||||||
if (userInputs.labels.find(val => val.startsWith(sourceLabelKey) == true) == null) {
|
|
||||||
const githubOwnerRepoUrl = defaultContext.split('#')[0];
|
|
||||||
userInputs.labels.push(`${sourceLabelKey}=${githubOwnerRepoUrl}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
//Add dockerfile path as label
|
|
||||||
let dockerfilePath = userInputs.file;
|
let dockerfilePath = userInputs.file;
|
||||||
userInputs.labels.push(`dockerfile-path=${dockerfilePath}`);
|
userInputs.labels.push(`dockerfile-path=${defaultContext}/${dockerfilePath}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return userInputs;
|
return userInputs;
|
||||||
|
|
Loading…
Add table
Reference in a new issue