Skip to content

Commit

Permalink
fix: trimmed input from multiline inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jbristowe committed Sep 17, 2021
1 parent 9894887 commit 282dd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input-parameters.ts
Expand Up @@ -76,7 +76,7 @@ export function get(): InputParameters {
noDeployAfter: getInput('no_deploy_after'),
noRawLog: getBooleanInput('no_raw_log'),
package: getInput('package'),
packages: getMultilineInput('packages'),
packages: getMultilineInput('packages').map(p => p.trim()),
packagePrerelease: getInput('package_prerelease'),
packageVersion: getInput('package_version'),
packagesFolder: getInput('packages_folder'),
Expand Down

0 comments on commit 282dd50

Please sign in to comment.