mirror of
https://github.com/docker/build-push-action.git
synced 2026-05-31 06:42:41 +03:00
preserve trailing whitespace in secrets input
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
+1
-1
@@ -76,7 +76,7 @@ export async function getInputs(): Promise<Inputs> {
|
||||
pull: core.getBooleanInput('pull'),
|
||||
push: core.getBooleanInput('push'),
|
||||
sbom: core.getInput('sbom'),
|
||||
secrets: Util.getInputList('secrets', {ignoreComma: true}),
|
||||
secrets: Util.getInputList('secrets', {ignoreComma: true, trimWhitespace: false}),
|
||||
'secret-envs': Util.getInputList('secret-envs'),
|
||||
'secret-files': Util.getInputList('secret-files', {ignoreComma: true}),
|
||||
'shm-size': core.getInput('shm-size'),
|
||||
|
||||
Reference in New Issue
Block a user