mirror of
https://github.com/peter-evans/dockerhub-description.git
synced 2024-11-22 20:19:33 +01:00
Convert repository to lower case
This commit is contained in:
parent
91342cc8a6
commit
d4e0800ec5
2 changed files with 5 additions and 0 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -152,6 +152,8 @@ function getInputs() {
|
||||||
if (!inputs.repository && process.env['GITHUB_REPOSITORY']) {
|
if (!inputs.repository && process.env['GITHUB_REPOSITORY']) {
|
||||||
inputs.repository = process.env['GITHUB_REPOSITORY'];
|
inputs.repository = process.env['GITHUB_REPOSITORY'];
|
||||||
}
|
}
|
||||||
|
// Docker repositories must be all lower case
|
||||||
|
inputs.repository = inputs.repository.toLowerCase();
|
||||||
return inputs;
|
return inputs;
|
||||||
}
|
}
|
||||||
exports.getInputs = getInputs;
|
exports.getInputs = getInputs;
|
||||||
|
|
|
@ -58,6 +58,9 @@ export function getInputs(): Inputs {
|
||||||
inputs.repository = process.env['GITHUB_REPOSITORY']
|
inputs.repository = process.env['GITHUB_REPOSITORY']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Docker repositories must be all lower case
|
||||||
|
inputs.repository = inputs.repository.toLowerCase()
|
||||||
|
|
||||||
return inputs
|
return inputs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue