2021-02-08 16:24:18 +00:00
|
|
|
// This file was auto-generated by action-io-generator. Do not edit by hand!
|
|
|
|
export enum Inputs {
|
2021-02-17 18:27:20 +00:00
|
|
|
/**
|
2021-07-09 15:12:48 +00:00
|
|
|
* Label the image with this ARCH, instead of defaulting to the host architecture.
|
2021-02-17 18:27:20 +00:00
|
|
|
* Required: false
|
2021-07-09 15:12:48 +00:00
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
ARCH = "arch",
|
|
|
|
/**
|
|
|
|
* Alias for "arch". "arch" takes precedence if both are set.
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
2021-02-17 18:27:20 +00:00
|
|
|
*/
|
|
|
|
ARCHS = "archs",
|
2021-02-08 16:24:18 +00:00
|
|
|
/**
|
|
|
|
* The base image to use to create a new container image
|
2021-02-24 16:13:55 +00:00
|
|
|
* Required: false
|
2021-02-08 16:24:18 +00:00
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
BASE_IMAGE = "base-image",
|
|
|
|
/**
|
|
|
|
* List of --build-args to pass to buildah
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
BUILD_ARGS = "build-args",
|
2021-09-14 19:03:38 +00:00
|
|
|
/**
|
|
|
|
* List of Containerfile paths (eg: ./Containerfile)
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
CONTAINERFILES = "containerfiles",
|
2021-02-08 16:24:18 +00:00
|
|
|
/**
|
|
|
|
* List of files/directories to copy inside the base image
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
CONTENT = "content",
|
|
|
|
/**
|
|
|
|
* Path of the directory to use as context (default: .)
|
|
|
|
* Required: false
|
|
|
|
* Default: "."
|
|
|
|
*/
|
|
|
|
CONTEXT = "context",
|
|
|
|
/**
|
2021-09-14 19:03:38 +00:00
|
|
|
* Alias for "containerfiles". "containerfiles" takes precedence if both are set.
|
2021-02-08 16:24:18 +00:00
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
DOCKERFILES = "dockerfiles",
|
|
|
|
/**
|
|
|
|
* The entry point to set for containers based on image
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
ENTRYPOINT = "entrypoint",
|
|
|
|
/**
|
|
|
|
* List of environment variables to be set when running containers based on image
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
ENVS = "envs",
|
2021-04-12 17:13:19 +00:00
|
|
|
/**
|
|
|
|
* Extra args to be passed to buildah bud.
|
|
|
|
* Separate arguments by newline. Do not use quotes - @actions/exec will do the quoting for you.
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
EXTRA_ARGS = "extra-args",
|
2021-02-08 16:24:18 +00:00
|
|
|
/**
|
|
|
|
* The name (reference) of the image to build
|
2021-10-12 17:21:52 +00:00
|
|
|
* Required: false
|
2021-02-08 16:24:18 +00:00
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
IMAGE = "image",
|
2021-03-30 12:50:32 +00:00
|
|
|
/**
|
|
|
|
* Set to true to cache intermediate layers during build process
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
LAYERS = "layers",
|
2021-02-08 16:24:18 +00:00
|
|
|
/**
|
|
|
|
* Set to true to build using the OCI image format instead of the Docker image format
|
|
|
|
* Required: false
|
|
|
|
* Default: "false"
|
|
|
|
*/
|
|
|
|
OCI = "oci",
|
|
|
|
/**
|
|
|
|
* The port to expose when running containers based on image
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
PORT = "port",
|
|
|
|
/**
|
2021-10-12 17:21:52 +00:00
|
|
|
* The tags of the image to build. For multiple tags, seperate by whitespace. For example, "latest v1".
|
2021-02-08 16:24:18 +00:00
|
|
|
* Required: false
|
|
|
|
* Default: "latest"
|
|
|
|
*/
|
|
|
|
TAGS = "tags",
|
|
|
|
/**
|
|
|
|
* The working directory to use within the container
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
WORKDIR = "workdir",
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum Outputs {
|
|
|
|
/**
|
|
|
|
* Name of the image built
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
IMAGE = "image",
|
2021-09-13 15:04:36 +00:00
|
|
|
/**
|
|
|
|
* Name of the image tagged with the first tag present
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
IMAGE_WITH_TAG = "image-with-tag",
|
2021-02-08 16:24:18 +00:00
|
|
|
/**
|
|
|
|
* List of the tags that were created, separated by spaces
|
|
|
|
* Required: false
|
|
|
|
* Default: None.
|
|
|
|
*/
|
|
|
|
TAGS = "tags",
|
|
|
|
}
|