This commit is contained in:
CrazyMax
2021-02-09 18:21:34 +01:00
parent 249df73817
commit 06300779ca
2 changed files with 22 additions and 3 deletions

View File

@@ -115,7 +115,7 @@ jobs:
path: ./dist/*
if-no-files-found: error
-
name: Build image
name: Build
uses: docker/bake-action@v1
with:
files: |

View File

@@ -70,7 +70,19 @@ target "artifact" {
target "artifact-all" {
inherits = ["artifact"]
platforms = ["linux/amd64", "linux/arm/v5", "linux/arm/v6", "linux/arm/v7", "linux/arm64", "linux/386", "linux/ppc64le", "linux/s390x", "windows/amd64", "windows/386", "darwin/amd64"]
platforms = [
"linux/amd64",
"linux/arm/v5",
"linux/arm/v6",
"linux/arm/v7",
"linux/arm64",
"linux/386",
"linux/ppc64le",
"linux/s390x",
"windows/amd64",
"windows/386",
"darwin/amd64"
]
}
target "image" {
@@ -84,5 +96,12 @@ target "image-local" {
target "image-all" {
inherits = ["image"]
platforms = ["linux/amd64", "linux/arm/v6", "linux/arm/v7", "linux/arm64", "linux/386", "linux/ppc64le"]
platforms = [
"linux/amd64",
"linux/arm/v6",
"linux/arm/v7",
"linux/arm64",
"linux/386",
"linux/ppc64le"
]
}