1
0
Files
build-push-action/action.yml
T

61 lines
1.9 KiB
YAML
Raw Normal View History

2020-03-06 09:15:16 +00:00
name: Build and push Docker images
description: Builds and pushes Docker images and will log in to a Docker registry if required
2020-03-05 15:52:30 +00:00
author: Docker
runs:
using: docker
2020-03-06 13:51:14 +00:00
image: docker://docker/github-actions:v0.1
2020-03-05 15:52:30 +00:00
args:
- build-push
inputs:
username:
2020-03-06 09:15:16 +00:00
description: Username used to log in to a Docker registry. If not set then no login will occur
2020-03-05 15:52:30 +00:00
required: false
password:
2020-03-06 09:15:16 +00:00
description: Password used to log in to a Docker registry. If not set then no login will occur
2020-03-05 15:52:30 +00:00
required: false
registry:
2020-03-06 09:15:16 +00:00
description: Server address of Docker registry. If not set then will default to Docker Hub
2020-03-05 15:52:30 +00:00
required: false
repository:
description: Docker repository to tag the image with
required: true
tags:
2020-03-05 16:28:11 +00:00
description: Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
2020-03-05 15:52:30 +00:00
required: false
tag_with_ref:
description: Automatically tags the built image with the git reference as per the readme
required: false
default: false
tag_with_sha:
description: Automatically tags the built image with the git short sha as per the readme
required: false
default: false
path:
description: Path to run docker build from
required: false
default: "."
dockerfile:
description: Name of the Dockerfile (Default is 'path/Dockerfile')
required: false
target:
2020-03-06 09:15:16 +00:00
description: Sets the target stage to build
2020-03-05 15:52:30 +00:00
required: false
always_pull:
description: Always attempt to pull a newer version of the image
required: false
default: false
build_args:
description: Comma-delmited list of build-time variables
required: false
labels:
2020-03-05 16:28:11 +00:00
description: Comma-delimited list of labels to add to the built image
2020-03-05 15:52:30 +00:00
required: false
add_git_labels:
2020-03-06 13:51:14 +00:00
description: Adds labels with git repository information to the built image
2020-03-05 15:52:30 +00:00
required: false
default: false
push:
description: Whether to push the image
required: false
default: true