style: move input defaults together
This commit is contained in:
6
dist/index.js
vendored
6
dist/index.js
vendored
@@ -130,9 +130,6 @@ function getInputs() {
|
|||||||
if (!inputs.repository && process.env['DOCKER_REPOSITORY']) {
|
if (!inputs.repository && process.env['DOCKER_REPOSITORY']) {
|
||||||
inputs.repository = process.env['DOCKER_REPOSITORY'];
|
inputs.repository = process.env['DOCKER_REPOSITORY'];
|
||||||
}
|
}
|
||||||
if (!inputs.repository && process.env['GITHUB_REPOSITORY']) {
|
|
||||||
inputs.repository = process.env['GITHUB_REPOSITORY'];
|
|
||||||
}
|
|
||||||
if (!inputs.readmeFilepath && process.env['README_FILEPATH']) {
|
if (!inputs.readmeFilepath && process.env['README_FILEPATH']) {
|
||||||
inputs.readmeFilepath = process.env['README_FILEPATH'];
|
inputs.readmeFilepath = process.env['README_FILEPATH'];
|
||||||
}
|
}
|
||||||
@@ -140,6 +137,9 @@ function getInputs() {
|
|||||||
if (!inputs.readmeFilepath) {
|
if (!inputs.readmeFilepath) {
|
||||||
inputs.readmeFilepath = README_FILEPATH_DEFAULT;
|
inputs.readmeFilepath = README_FILEPATH_DEFAULT;
|
||||||
}
|
}
|
||||||
|
if (!inputs.repository && process.env['GITHUB_REPOSITORY']) {
|
||||||
|
inputs.repository = process.env['GITHUB_REPOSITORY'];
|
||||||
|
}
|
||||||
return inputs;
|
return inputs;
|
||||||
}
|
}
|
||||||
exports.getInputs = getInputs;
|
exports.getInputs = getInputs;
|
||||||
|
|||||||
@@ -39,9 +39,6 @@ export function getInputs(): Inputs {
|
|||||||
if (!inputs.repository && process.env['DOCKER_REPOSITORY']) {
|
if (!inputs.repository && process.env['DOCKER_REPOSITORY']) {
|
||||||
inputs.repository = process.env['DOCKER_REPOSITORY']
|
inputs.repository = process.env['DOCKER_REPOSITORY']
|
||||||
}
|
}
|
||||||
if (!inputs.repository && process.env['GITHUB_REPOSITORY']) {
|
|
||||||
inputs.repository = process.env['GITHUB_REPOSITORY']
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!inputs.readmeFilepath && process.env['README_FILEPATH']) {
|
if (!inputs.readmeFilepath && process.env['README_FILEPATH']) {
|
||||||
inputs.readmeFilepath = process.env['README_FILEPATH']
|
inputs.readmeFilepath = process.env['README_FILEPATH']
|
||||||
@@ -51,6 +48,9 @@ export function getInputs(): Inputs {
|
|||||||
if (!inputs.readmeFilepath) {
|
if (!inputs.readmeFilepath) {
|
||||||
inputs.readmeFilepath = README_FILEPATH_DEFAULT
|
inputs.readmeFilepath = README_FILEPATH_DEFAULT
|
||||||
}
|
}
|
||||||
|
if (!inputs.repository && process.env['GITHUB_REPOSITORY']) {
|
||||||
|
inputs.repository = process.env['GITHUB_REPOSITORY']
|
||||||
|
}
|
||||||
|
|
||||||
return inputs
|
return inputs
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user