-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add script to build/publish zot multiarch images and modify the p…
…ublish pipeline to use it (#2214) Example usage: scripts/build_multiarch_image.sh --registry ghcr.io/project-zot --source-tag v2.0.0 --file build/multiarch-zot.json --destination-tags="v2.0.0 latest" Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
- Loading branch information
Showing
6 changed files
with
333 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"target_repo": "zb", | ||
"source_repos": [ | ||
"zb-linux-amd64", | ||
"zb-linux-arm64", | ||
"zb-darwin-amd64", | ||
"zb-darwin-arm64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"target_repo": "zot-minimal", | ||
"source_repos": [ | ||
"zot-minimal-linux-amd64", | ||
"zot-minimal-linux-arm64", | ||
"zot-minimal-darwin-amd64", | ||
"zot-minimal-darwin-arm64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"target_repo": "zot", | ||
"source_repos": [ | ||
"zot-linux-amd64", | ||
"zot-linux-arm64", | ||
"zot-darwin-amd64", | ||
"zot-darwin-arm64" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"target_repo": "zxp", | ||
"source_repos": [ | ||
"zxp-linux-amd64", | ||
"zxp-linux-arm64", | ||
"zxp-darwin-amd64", | ||
"zxp-darwin-arm64" | ||
] | ||
} |
Oops, something went wrong.