1
0
Fork 0
mirror of https://github.com/docker/build-push-action.git synced 2025-03-28 01:30:09 +01:00

feat: allow csv usage in labels

Signed-off-by: Henrik Gerdes <hegerdes@outlook.de>
This commit is contained in:
Henrik Gerdes 2023-06-05 20:38:26 +02:00 committed by GitHub
parent a799b4decf
commit 44c5b80511
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@ export async function getInputs(): Promise<Inputs> {
cgroupParent: core.getInput('cgroup-parent'),
context: core.getInput('context') || Context.gitContext(),
file: core.getInput('file'),
labels: Util.getInputList('labels', {ignoreComma: true}),
labels: Util.getInputList('labels'),
load: core.getBooleanInput('load'),
network: core.getInput('network'),
noCache: core.getBooleanInput('no-cache'),