Convert repository to lower case

This commit is contained in:
Jennings Zhang
2021-02-03 19:54:07 -05:00
parent 91342cc8a6
commit d4e0800ec5
2 changed files with 5 additions and 0 deletions

View File

@@ -58,6 +58,9 @@ export function getInputs(): Inputs {
inputs.repository = process.env['GITHUB_REPOSITORY']
}
// Docker repositories must be all lower case
inputs.repository = inputs.repository.toLowerCase()
return inputs
}