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