mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
Minor corrections to readme and yml
Signed-off-by: Nick Adcock <nick.adcock@docker.com>
This commit is contained in:
parent
34907f0624
commit
1ccd3cd25b
2 changed files with 5 additions and 5 deletions
|
@ -33,7 +33,7 @@ Username used to log in to a Docker registry. If not set then no login will occu
|
||||||
|
|
||||||
### `password`
|
### `password`
|
||||||
|
|
||||||
Password used to log in to a Docker registry. If not set then no login will occur.
|
Password or personal access token used to log in to a Docker registry. If not set then no login will occur.
|
||||||
|
|
||||||
### `registry`
|
### `registry`
|
||||||
|
|
||||||
|
@ -131,8 +131,8 @@ The labels are:
|
||||||
|Label key|Example value|Description|
|
|Label key|Example value|Description|
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
|`org.opencontainers.image.created`|`2020-03-06T23:00:00Z`|Date and time on which the image was built (string, date-time as defined by RFC 3339).|
|
|`org.opencontainers.image.created`|`2020-03-06T23:00:00Z`|Date and time on which the image was built (string, date-time as defined by RFC 3339).|
|
||||||
|`org.opencontainers.image.source`|`https://github.com/myorg/myrepository`|URL to this repository.|
|
|`org.opencontainers.image.source`|`https://github.com/myorg/myrepository`|URL to the GitHub repository.|
|
||||||
|`org.opencontainers.image.revision`|`676cae2f85471aeff6776463c72881ebd902dcf9`|The full git sha of this commit.|
|
|`org.opencontainers.image.revision`|`676cae2f85471aeff6776463c72881ebd902dcf9`|The full git SHA of this commit.|
|
||||||
|
|
||||||
|
|
||||||
### `push`
|
### `push`
|
||||||
|
|
|
@ -11,7 +11,7 @@ inputs:
|
||||||
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 or personal access token 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
|
||||||
|
@ -27,7 +27,7 @@ inputs:
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
tag_with_sha:
|
tag_with_sha:
|
||||||
description: Automatically tags the built image with the git short sha as per the readme
|
description: Automatically tags the built image with the git short SHA as per the readme
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: false
|
||||||
path:
|
path:
|
||||||
|
|
Loading…
Reference in a new issue