You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+92-12Lines changed: 92 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,23 @@ Builds a Docker image and pushes it to the private registry of your choosing.
14
14
- AWS Elastic Container Registry (ECR)
15
15
- GitHub Docker Registry
16
16
17
+
## Features
18
+
19
+
-[Auto-tagging with GitOps](#auto-tagging-with-gitops)
20
+
-[BuildKit support](#buildkit-support)
21
+
-[Multi-platform builds](#multi-platform-builds)
22
+
17
23
## Breaking changes
18
24
19
-
If you're experiencing issues, be sure you are using the [latest stable release](https://github.com/mr-smithers-excellent/docker-build-push/releases/latest) (currently v5). The AWS ECR login command became deprecated between v4 and v5. Additionally, support for multiple tags was added between v4 and v5.
25
+
If you're experiencing issues, be sure you are using the [latest stable release](https://github.com/mr-smithers-excellent/docker-build-push/releases/latest) (currently v6).
26
+
27
+
### v6
28
+
- Multi-platform builds now supported
29
+
30
+
### v5
31
+
- AWS ECR [get-login command](https://docs.aws.amazon.com/cli/latest/reference/ecr/get-login.html) became deprecated, migrated to [get-login-password command](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ecr/get-login-password.html)
32
+
- Support for multiple tags added
33
+
- BuildKit support added
20
34
21
35
## Basic usage
22
36
@@ -25,10 +39,10 @@ If you're experiencing issues, be sure you are using the [latest stable release]
By default, if you do not pass a `tags` input this action will use an algorithm based on the state of your git repo to determine the Docker image tag(s). This is designed to enable developers to more easily use [GitOps](https://www.weave.works/technologies/gitops/) in their CI/CD pipelines. Below is a table detailing how the GitHub trigger (branch or tag) determines the Docker tag(s).
Enables [multi-platform builds](https://docs.docker.com/build/building/multi-platform/) with the default [docker-container driver](https://docs.docker.com/build/drivers/docker-container/)
0 commit comments