mirror of
https://github.com/docker/build-push-action.git
synced 2026-07-01 02:30:44 +00:00
preserve trailing whitespace in secrets input
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
parent
f9f3042f7e
commit
2d1196fa34
2 changed files with 20 additions and 1 deletions
|
|
@ -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'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue