mirror of
https://github.com/peter-evans/dockerhub-description.git
synced 2024-11-22 12:09:33 +01:00
76 lines
2.2 KiB
TypeScript
76 lines
2.2 KiB
TypeScript
import * as core from '@actions/core'
|
|
|
|
const README_FILEPATH_DEFAULT = './README.md'
|
|
|
|
interface Inputs {
|
|
username: string
|
|
password: string
|
|
repository: string
|
|
shortDescription: string
|
|
readmeFilepath: string
|
|
}
|
|
|
|
export function getInputs(): Inputs {
|
|
const inputs = {
|
|
username: core.getInput('username'),
|
|
password: core.getInput('password'),
|
|
repository: core.getInput('repository'),
|
|
shortDescription: core.getInput('short-description'),
|
|
readmeFilepath: core.getInput('readme-filepath')
|
|
}
|
|
|
|
// Environment variable input alternatives and their aliases
|
|
|
|
if (!inputs.username && process.env['DOCKERHUB_USERNAME']) {
|
|
inputs.username = process.env['DOCKERHUB_USERNAME']
|
|
}
|
|
if (!inputs.username && process.env['DOCKER_USERNAME']) {
|
|
inputs.username = process.env['DOCKER_USERNAME']
|
|
}
|
|
|
|
if (!inputs.password && process.env['DOCKERHUB_PASSWORD']) {
|
|
inputs.password = process.env['DOCKERHUB_PASSWORD']
|
|
}
|
|
if (!inputs.password && process.env['DOCKER_PASSWORD']) {
|
|
inputs.password = process.env['DOCKER_PASSWORD']
|
|
}
|
|
|
|
if (!inputs.repository && process.env['DOCKERHUB_REPOSITORY']) {
|
|
inputs.repository = process.env['DOCKERHUB_REPOSITORY']
|
|
}
|
|
if (!inputs.repository && process.env['DOCKER_REPOSITORY']) {
|
|
inputs.repository = process.env['DOCKER_REPOSITORY']
|
|
}
|
|
|
|
if (!inputs.shortDescription && process.env['SHORT_DESCRIPTION']) {
|
|
inputs.shortDescription = process.env['SHORT_DESCRIPTION']
|
|
}
|
|
|
|
if (!inputs.readmeFilepath && process.env['README_FILEPATH']) {
|
|
inputs.readmeFilepath = process.env['README_FILEPATH']
|
|
}
|
|
|
|
// Set defaults
|
|
if (!inputs.readmeFilepath) {
|
|
inputs.readmeFilepath = README_FILEPATH_DEFAULT
|
|
}
|
|
if (!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
|
|
}
|
|
|
|
function checkRequiredInput(input: string, name: string): void {
|
|
if (!input) {
|
|
throw new Error(`Required input '${name}' is missing.`)
|
|
}
|
|
}
|
|
|
|
export function validateInputs(inputs: Inputs): void {
|
|
checkRequiredInput(inputs.username, 'username')
|
|
checkRequiredInput(inputs.password, 'password')
|
|
}
|