mirror of
https://github.com/docker/build-push-action
synced 2024-11-10 05:21:40 +00:00
Merge pull request #369 from crazy-max/preserve-quotes
Preserve quotes inside unquoted field
This commit is contained in:
commit
ca26f5b713
3 changed files with 18 additions and 0 deletions
|
@ -361,6 +361,22 @@ ccc`],
|
||||||
'--push',
|
'--push',
|
||||||
'https://github.com/docker/build-push-action.git#heads/master'
|
'https://github.com/docker/build-push-action.git#heads/master'
|
||||||
]
|
]
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'0.4.2',
|
||||||
|
new Map<string, string>([
|
||||||
|
['context', '.'],
|
||||||
|
['labels', 'org.opencontainers.image.title=filter_results_top_n\norg.opencontainers.image.description=Reference implementation of operation "filter results (top-n)"'],
|
||||||
|
['outputs', 'type=local,dest=./release-out']
|
||||||
|
]),
|
||||||
|
[
|
||||||
|
'buildx',
|
||||||
|
'build',
|
||||||
|
'--label', 'org.opencontainers.image.title=filter_results_top_n',
|
||||||
|
'--label', 'org.opencontainers.image.description=Reference implementation of operation "filter results (top-n)"',
|
||||||
|
'--output', 'type=local,dest=./release-out',
|
||||||
|
'.'
|
||||||
|
]
|
||||||
]
|
]
|
||||||
])(
|
])(
|
||||||
'given %p with %p as inputs, returns %p',
|
'given %p with %p as inputs, returns %p',
|
||||||
|
|
1
dist/index.js
generated
vendored
1
dist/index.js
generated
vendored
|
@ -13485,6 +13485,7 @@ function getInputList(name, ignoreComma) {
|
||||||
}
|
}
|
||||||
for (let output of (yield sync_1.default(items, {
|
for (let output of (yield sync_1.default(items, {
|
||||||
columns: false,
|
columns: false,
|
||||||
|
relax: true,
|
||||||
relaxColumnCount: true,
|
relaxColumnCount: true,
|
||||||
skipLinesWithEmptyValues: true
|
skipLinesWithEmptyValues: true
|
||||||
}))) {
|
}))) {
|
||||||
|
|
|
@ -185,6 +185,7 @@ export async function getInputList(name: string, ignoreComma?: boolean): Promise
|
||||||
|
|
||||||
for (let output of (await csvparse(items, {
|
for (let output of (await csvparse(items, {
|
||||||
columns: false,
|
columns: false,
|
||||||
|
relax: true,
|
||||||
relaxColumnCount: true,
|
relaxColumnCount: true,
|
||||||
skipLinesWithEmptyValues: true
|
skipLinesWithEmptyValues: true
|
||||||
})) as Array<string[]>) {
|
})) as Array<string[]>) {
|
||||||
|
|
Loading…
Reference in a new issue