From 13d7e7a55bd224aa70bcd907c76503dc47b168e3 Mon Sep 17 00:00:00 2001 From: Andrew Waters Date: Thu, 16 Apr 2020 14:05:44 +0100 Subject: [PATCH 1/4] Adds GCR example Signed-off-by: Andrew Waters --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index de81c4c..17ff8dd 100644 --- a/README.md +++ b/README.md @@ -192,4 +192,15 @@ with: repository: myorg/myrepository tag_with_ref: true target: mytarget -``` \ No newline at end of file +``` + +The following will build the root Dockerfile, tag the image as `myorg/myrepository:latest`, log in to Google Container Registry using GitHub secrets (where `DOCKER_PASSWORD` is a [JSON key](https://cloud.google.com/container-registry/docs/advanced-authentication#json-key)), and push the image to the CGR repository `myorg/myrepository`: + +```yaml +uses: docker/build-push-action@v1 +with: + username: _json_key + password: ${{ secrets.DOCKER_PASSWORD }} + registry: gcr.io + repository: myorg/myrepository +``` From abc498d7d312bf2228098acbb10fdff82b8ce4b7 Mon Sep 17 00:00:00 2001 From: Nick Adcock Date: Wed, 22 Apr 2020 16:34:18 +0100 Subject: [PATCH 2/4] Add cache_froms input to support --cache-from Signed-off-by: Nick Adcock --- README.md | 10 ++++++++++ action.yml | 3 +++ 2 files changed, 13 insertions(+) diff --git a/README.md b/README.md index de81c4c..1e3d87f 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Suggestions and issues can be posted on the repositories [issues page](https://g * [target](#target) * [always_pull](#always_pull) * [build_args](#build_args) +* [cache_froms](#cache_froms) * [labels](#labels) * [add_git_labels](#add_git_labels) * [push](#push) @@ -114,6 +115,15 @@ Example: build_args: arg1=value1,arg2=value2 ``` +### `cache_froms` + +Comma-delimited list of images to consider as cache sources. + +Example: +```yaml +cache_froms: myorg/baseimage:latest +``` + ### `labels` Comma-delimited list of labels to add to the built image. diff --git a/action.yml b/action.yml index feaa08e..7720f15 100644 --- a/action.yml +++ b/action.yml @@ -50,6 +50,9 @@ inputs: build_args: description: Comma-delimited list of build-time variables required: false + cache_froms: + description: Comma-delimited list of images to consider as cache sources + required: false labels: description: Comma-delimited list of labels to add to the built image required: false From 4ca0e628b91886e93a61d46664e0a6f90fc739af Mon Sep 17 00:00:00 2001 From: Andrew Waters Date: Thu, 23 Apr 2020 13:09:57 +0100 Subject: [PATCH 3/4] Add: explicit tag Signed-off-by: Andrew Waters --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 17ff8dd..d83c29b 100644 --- a/README.md +++ b/README.md @@ -203,4 +203,5 @@ with: password: ${{ secrets.DOCKER_PASSWORD }} registry: gcr.io repository: myorg/myrepository + tags: latest ``` From 68257a7f8a6d40504c1d311816a417f9762c979e Mon Sep 17 00:00:00 2001 From: Konosuke Kachi Date: Sat, 16 May 2020 15:16:10 +0900 Subject: [PATCH 4/4] Fix typo Signed-off-by: Konosuke Kachi --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 578d14f..43e207b 100644 --- a/README.md +++ b/README.md @@ -204,7 +204,7 @@ with: target: mytarget ``` -The following will build the root Dockerfile, tag the image as `myorg/myrepository:latest`, log in to Google Container Registry using GitHub secrets (where `DOCKER_PASSWORD` is a [JSON key](https://cloud.google.com/container-registry/docs/advanced-authentication#json-key)), and push the image to the CGR repository `myorg/myrepository`: +The following will build the root Dockerfile, tag the image as `myorg/myrepository:latest`, log in to Google Container Registry using GitHub secrets (where `DOCKER_PASSWORD` is a [JSON key](https://cloud.google.com/container-registry/docs/advanced-authentication#json-key)), and push the image to the GCR repository `myorg/myrepository`: ```yaml uses: docker/build-push-action@v1