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:
parent
be3385a5dd
commit
f31af72910
1 changed files with 16 additions and 1 deletions
|
@ -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>> {
|
||||
|
|
Loading…
Add table
Reference in a new issue