mirror of
https://github.com/redhat-actions/podman-login.git
synced 2025-04-05 00:07:46 +02:00
31 lines
855 B
TypeScript
31 lines
855 B
TypeScript
// This file was auto-generated by action-io-generator. Do not edit by hand!
|
|
export enum Inputs {
|
|
/**
|
|
* 'By default, the action logs out of the container image registry at the end
|
|
* of the job (for self-hosted runners). Set this to false to disable this behaviour'
|
|
* Required: false
|
|
* Default: "true"
|
|
*/
|
|
LOGOUT = "logout",
|
|
/**
|
|
* Password, encrypted password, or access token for username
|
|
* Required: true
|
|
* Default: None.
|
|
*/
|
|
PASSWORD = "password",
|
|
/**
|
|
* Hostname/domain of the container image registry such as quay.io, docker.io
|
|
* Required: true
|
|
* Default: None.
|
|
*/
|
|
REGISTRY = "registry",
|
|
/**
|
|
* Username to log in against the container image registry
|
|
* Required: true
|
|
* Default: None.
|
|
*/
|
|
USERNAME = "username",
|
|
}
|
|
|
|
export enum Outputs {
|
|
}
|