Compare commits

..

6 Commits
v1.0 ... v1.0.1

Author SHA1 Message Date
e5e36c4a4e Merge pull request #19 from docker/release-v1.0.1
Use v1 of docker/github-actions image
2020-03-23 11:44:03 +00:00
af185b4d18 Use v1 of docker/github-actions image
Signed-off-by: Nick Adcock <nick.adcock@docker.com>
2020-03-23 11:23:53 +00:00
57a738dc67 Merge pull request #16 from docker/clarify-paths
Clarify dockerfile and path inputs
2020-03-23 11:07:27 +00:00
120f6587bc Clarify dockerfile and path inputs
Clarify the documentation for the dockerfile and path action inputs
including how they relate to each other.

Signed-off-by: Nick Adcock <nick.adcock@docker.com>
2020-03-20 13:15:06 +00:00
434b33a73f Merge pull request #8 from ScottBrenner/patch-1
Rename LICENCE to LICENSE
2020-03-19 10:41:36 +00:00
5b676d2d40 Rename LICENCE to LICENSE
Signed-off-by: Scott Brenner <scott@scottbrenner.me>
2020-03-17 18:43:10 -07:00
3 changed files with 8 additions and 6 deletions

View File

View File

@ -86,11 +86,13 @@ Example:
### `path`
Path to run the docker build from. Defaults to `.`.
Path to the build context. Defaults to `.`
### `dockerfile`
Name of the Dockerfile. Defaults to `{path}/Dockerfile`.
Path to the Dockerfile. Defaults to `{path}/Dockerfile`
Note when set this path is **not** relative to the `path` input but is instead relative to the current working directory.
### `target`

View File

@ -6,7 +6,7 @@ branding:
color: 'blue'
runs:
using: docker
image: docker://docker/github-actions:v1.0
image: docker://docker/github-actions:v1
args:
- build-push
inputs:
@ -34,11 +34,11 @@ inputs:
required: false
default: false
path:
description: Path to run docker build from
description: Path to the build context
required: false
default: "."
dockerfile:
description: Name of the Dockerfile (Default is 'path/Dockerfile')
description: Path to the Dockerfile (Default is '{path}/Dockerfile')
required: false
target:
description: Sets the target stage to build