add global config option

This commit is contained in:
Jonathan Grimes 2020-02-28 10:40:17 -06:00
parent 096e927750
commit 72b08f7601
No known key found for this signature in database
GPG key ID: 103F2E43AA0E4DF8
6 changed files with 89 additions and 36 deletions

View file

@ -110,5 +110,8 @@ export function getInputs(): ISourceSettings {
result.persistCredentials =
(core.getInput('persist-credentials') || 'false').toUpperCase() === 'TRUE'
result.globalCredentials =
(core.getInput('global-credentials') || 'false').toUpperCase() === 'TRUE'
return result
}