diff --git a/dist/index.js b/dist/index.js index 8e9a9db..5a8739b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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 diff --git a/src/index.ts b/src/index.ts index 8954df7..2a546f8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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