1
0
Fork 0
mirror of https://github.com/aevea/action-kaniko.git synced 2025-04-20 09:08:14 +02:00
action-kaniko/action.yml
2020-02-15 18:55:26 +01:00

27 lines
737 B
YAML

# kaniko.yml
name: "Kaniko builder"
description: "Build and push docker images using Kaniko"
inputs:
registry:
description: "Docker registry where the image will be pushed"
required: false
default: "docker.io"
username:
description: "Username used for authentication to the Docker registry"
required: false
default: "$GITHUB_ACTOR"
password:
description: "Password used for authentication to the Docker registry"
required: false
default: "$GITHUB_TOKEN"
image:
description: "Image name"
required: false
default: "$GITHUB_REPOSITORY"
tag:
description: "Image tag"
required: false
default: "$GITHUB_REF (master -> latest)"
runs:
using: "docker"
image: "Dockerfile"