1
0
Fork 0
mirror of https://github.com/docker/build-push-action.git synced 2025-04-03 13:40:07 +02:00

Moved changes to context module, added check to prevent overriding user input

Signed-off-by: Jyotsna <Josh-01@github.com>
This commit is contained in:
Jyotsna 2020-11-05 12:12:33 +05:30
parent be3385a5dd
commit f31af72910

View file

@ -54,7 +54,8 @@ export function tmpNameSync(options?: tmp.TmpNameOptions): string {
}
export async function getInputs(defaultContext: string): Promise<Inputs> {
return {
let userInputs = {
context: core.getInput('context') || defaultContext,
file: core.getInput('file') || 'Dockerfile',
buildArgs: await getInputList('build-args', true),
@ -75,6 +76,20 @@ export async function getInputs(defaultContext: string): Promise<Inputs> {
githubToken: core.getInput('github-token'),
ssh: await getInputList('ssh')
};
//Add repo as source-label if not already supplied by user
const sourceLabelKey = 'org.opencontainers.image.source';
if( userInputs.labels.find(val => val.startsWith(sourceLabelKey) == true ) == null){
userInputs.labels.push(
`${sourceLabelKey}=https://github.com/${github.context.repo.owner}/${github.context.repo.repo}`
);
}
//Add dockerfile path as label
let dockerfilePath = userInputs.file;
userInputs.labels.push(`dockerfile-path=${dockerfilePath}`);
return userInputs;
}
export async function getArgs(inputs: Inputs, defaultContext: string, buildxVersion: string): Promise<Array<string>> {