fix bug w/ private-signing input (#77)
Signed-off-by: Brian DeHamer <bdehamer@github.com>
This commit is contained in:
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
@@ -80013,7 +80013,7 @@ const inputs = {
|
||||
pushToRegistry: core.getBooleanInput('push-to-registry'),
|
||||
githubToken: core.getInput('github-token'),
|
||||
// undocumented -- not part of public interface
|
||||
privateSigning: core.getBooleanInput('private-signing'),
|
||||
privateSigning: ['true', 'True', 'TRUE', '1'].includes(core.getInput('private-signing')),
|
||||
// internal only
|
||||
batchSize: DEFAULT_BATCH_SIZE,
|
||||
batchDelay: DEFAULT_BATCH_DELAY
|
||||
|
||||
@@ -17,7 +17,9 @@ const inputs: RunInputs = {
|
||||
pushToRegistry: core.getBooleanInput('push-to-registry'),
|
||||
githubToken: core.getInput('github-token'),
|
||||
// undocumented -- not part of public interface
|
||||
privateSigning: core.getBooleanInput('private-signing'),
|
||||
privateSigning: ['true', 'True', 'TRUE', '1'].includes(
|
||||
core.getInput('private-signing')
|
||||
),
|
||||
// internal only
|
||||
batchSize: DEFAULT_BATCH_SIZE,
|
||||
batchDelay: DEFAULT_BATCH_DELAY
|
||||
|
||||
Reference in New Issue
Block a user