mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
Fixing nits with action.yml descs
Signed-off-by: Nick Adcock <nick.adcock@docker.com>
This commit is contained in:
parent
95dd02d438
commit
3b4339199e
1 changed files with 6 additions and 6 deletions
12
action.yml
12
action.yml
|
@ -1,5 +1,5 @@
|
||||||
name: Build and push docker images
|
name: Build and push Docker images
|
||||||
description: Builds and pushes docker images and will log in to a docker registry if required
|
description: Builds and pushes Docker images and will log in to a Docker registry if required
|
||||||
author: Docker
|
author: Docker
|
||||||
runs:
|
runs:
|
||||||
using: docker
|
using: docker
|
||||||
|
@ -8,13 +8,13 @@ runs:
|
||||||
- build-push
|
- build-push
|
||||||
inputs:
|
inputs:
|
||||||
username:
|
username:
|
||||||
description: Username used to log in to a docker registry. If not set then no login will occur
|
description: Username used to log in to a Docker registry. If not set then no login will occur
|
||||||
required: false
|
required: false
|
||||||
password:
|
password:
|
||||||
description: Password used to log in to a docker registry. If not set then no login will occur
|
description: Password used to log in to a Docker registry. If not set then no login will occur
|
||||||
required: false
|
required: false
|
||||||
registry:
|
registry:
|
||||||
description: Server address of docker registry. If not set then will default to Docker Hub
|
description: Server address of Docker registry. If not set then will default to Docker Hub
|
||||||
required: false
|
required: false
|
||||||
repository:
|
repository:
|
||||||
description: Docker repository to tag the image with
|
description: Docker repository to tag the image with
|
||||||
|
@ -38,7 +38,7 @@ inputs:
|
||||||
description: Name of the Dockerfile (Default is 'path/Dockerfile')
|
description: Name of the Dockerfile (Default is 'path/Dockerfile')
|
||||||
required: false
|
required: false
|
||||||
target:
|
target:
|
||||||
description: Sets the target build stage to build
|
description: Sets the target stage to build
|
||||||
required: false
|
required: false
|
||||||
always_pull:
|
always_pull:
|
||||||
description: Always attempt to pull a newer version of the image
|
description: Always attempt to pull a newer version of the image
|
||||||
|
|
Loading…
Reference in a new issue