Skip to content

Commit 2ba59b4

Browse files
authored
build: build in reverse order of versions (#506)
Signed-off-by: Marc 'risson' Schmitt <[email protected]>
1 parent c269289 commit 2ba59b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def main(push_tags=False, multiarch=False):
9292
if push_tags:
9393
login()
9494

95-
for version, buildinfo in builddata.items():
95+
for version, buildinfo in sorted(builddata.items(), key=lambda item: item[0], reverse=True):
9696
sha256 = buildinfo["sha256"]
9797
tags = buildinfo["tags"]
9898
build_and_push(sha256, version, tags, push_tags, multiarch)

0 commit comments

Comments
 (0)