Skip to content

Commit 6c20794

Browse files
committed
disable quotes detection for "outputs" input
Signed-off-by: CrazyMax <[email protected]>
1 parent afdf0c0 commit 6c20794

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

__tests__/context.test.ts

+20
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,26 @@ ANOTHER_SECRET=ANOTHER_SECRET_ENV`]
705705
'--metadata-file', path.join(tmpDir, 'metadata-file'),
706706
'.'
707707
]
708+
],
709+
[
710+
29,
711+
'0.12.0',
712+
new Map<string, string>([
713+
['context', '.'],
714+
['outputs', `type=image,"name=localhost:5000/name/app:latest,localhost:5000/name/app:foo",push-by-digest=true,name-canonical=true,push=true`],
715+
['load', 'false'],
716+
['no-cache', 'false'],
717+
['push', 'false'],
718+
['pull', 'false'],
719+
]),
720+
[
721+
'build',
722+
'--iidfile', path.join(tmpDir, 'iidfile'),
723+
"--output", `type=image,"name=localhost:5000/name/app:latest,localhost:5000/name/app:foo",push-by-digest=true,name-canonical=true,push=true`,
724+
"--provenance", `mode=min,inline-only=true,builder-id=https://github.com/docker/build-push-action/actions/runs/123456789`,
725+
'--metadata-file', path.join(tmpDir, 'metadata-file'),
726+
'.'
727+
]
708728
]
709729
])(
710730
'[%d] given %p with %p as inputs, returns %p',

src/context.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function getInputs(): Promise<Inputs> {
6060
network: core.getInput('network'),
6161
noCache: core.getBooleanInput('no-cache'),
6262
noCacheFilters: Util.getInputList('no-cache-filters'),
63-
outputs: Util.getInputList('outputs', {ignoreComma: true}),
63+
outputs: Util.getInputList('outputs', {ignoreComma: true, quote: false}),
6464
platforms: Util.getInputList('platforms'),
6565
provenance: BuildxInputs.getProvenanceInput('provenance'),
6666
pull: core.getBooleanInput('pull'),

0 commit comments

Comments
 (0)