mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
Merge pull request #758 from crazy-max/revert-736
Revert build-args newline split
This commit is contained in:
commit
2a16835223
4 changed files with 3 additions and 21 deletions
|
@ -517,24 +517,6 @@ nproc=3`],
|
||||||
'--metadata-file', '/tmp/.docker-build-push-jest/metadata-file',
|
'--metadata-file', '/tmp/.docker-build-push-jest/metadata-file',
|
||||||
'https://github.com/docker/build-push-action.git#refs/heads/test-jest:subdir'
|
'https://github.com/docker/build-push-action.git#refs/heads/test-jest:subdir'
|
||||||
]
|
]
|
||||||
],
|
|
||||||
[
|
|
||||||
17,
|
|
||||||
'0.8.2',
|
|
||||||
new Map<string, string>([
|
|
||||||
['build-args', 'BUILD_INFO={"tags":["ghcr.io/ghost/docker-build-info:master","ghcr.io/ghost/docker-build-info:59d6c0f","ghcr.io/ghost/docker-build-info:master-59d6c0f"]}'],
|
|
||||||
['load', 'false'],
|
|
||||||
['no-cache', 'false'],
|
|
||||||
['push', 'false'],
|
|
||||||
['pull', 'false'],
|
|
||||||
]),
|
|
||||||
[
|
|
||||||
'build',
|
|
||||||
'--build-arg', 'BUILD_INFO={"tags":["ghcr.io/ghost/docker-build-info:master","ghcr.io/ghost/docker-build-info:59d6c0f","ghcr.io/ghost/docker-build-info:master-59d6c0f"]}',
|
|
||||||
'--iidfile', '/tmp/.docker-build-push-jest/iidfile',
|
|
||||||
'--metadata-file', '/tmp/.docker-build-push-jest/metadata-file',
|
|
||||||
'https://github.com/docker/build-push-action.git#refs/heads/test-jest'
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
])(
|
])(
|
||||||
'[%d] given %p with %p as inputs, returns %p',
|
'[%d] given %p with %p as inputs, returns %p',
|
||||||
|
|
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
|
@ -73,7 +73,7 @@ export async function getInputs(defaultContext: string): Promise<Inputs> {
|
||||||
addHosts: await getInputList('add-hosts'),
|
addHosts: await getInputList('add-hosts'),
|
||||||
allow: await getInputList('allow'),
|
allow: await getInputList('allow'),
|
||||||
attests: await getInputList('attests', true),
|
attests: await getInputList('attests', true),
|
||||||
buildArgs: core.getMultilineInput('build-args'),
|
buildArgs: await getInputList('build-args', true),
|
||||||
buildContexts: await getInputList('build-contexts', true),
|
buildContexts: await getInputList('build-contexts', true),
|
||||||
builder: core.getInput('builder'),
|
builder: core.getInput('builder'),
|
||||||
cacheFrom: await getInputList('cache-from', true),
|
cacheFrom: await getInputList('cache-from', true),
|
||||||
|
|
Loading…
Reference in a new issue