diff options
author | Jesus <heckyel@riseup.net> | 2023-09-25 10:50:14 +0800 |
---|---|---|
committer | Jesus <heckyel@riseup.net> | 2023-09-25 10:50:14 +0800 |
commit | 5b9aef614597dfcdc8bc817369afecce6c5c5044 (patch) | |
tree | 933d7f894ff24cec54d7dbb4e6c655bcfc63ea1f | |
parent | 288e0b0b247dceef67edd4983ce7271de97af6ee (diff) | |
download | hyperbola-docker-5b9aef614597dfcdc8bc817369afecce6c5c5044.tar.lz hyperbola-docker-5b9aef614597dfcdc8bc817369afecce6c5c5044.tar.xz hyperbola-docker-5b9aef614597dfcdc8bc817369afecce6c5c5044.zip |
Re-organize arch
-rw-r--r-- | make-hyperbola.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make-hyperbola.sh b/make-hyperbola.sh index 718c0f9..59ddcfa 100644 --- a/make-hyperbola.sh +++ b/make-hyperbola.sh @@ -84,15 +84,15 @@ docker push "$DOCKER_USERNAME/hyperbola:$tag-386" # Create and push the manifest for the specified tag docker manifest create "$DOCKER_USERNAME/hyperbola:$tag" \ - --amend "$DOCKER_USERNAME/hyperbola:$tag-amd64" \ - --amend "$DOCKER_USERNAME/hyperbola:$tag-386" + --amend "$DOCKER_USERNAME/hyperbola:$tag-386" \ + --amend "$DOCKER_USERNAME/hyperbola:$tag-amd64" docker manifest push "$DOCKER_USERNAME/hyperbola:$tag" # Create and push the manifest for "latest" docker manifest create "$DOCKER_USERNAME/hyperbola:$latest_tag" \ - --amend "$DOCKER_USERNAME/hyperbola:$tag-amd64" \ - --amend "$DOCKER_USERNAME/hyperbola:$tag-386" + --amend "$DOCKER_USERNAME/hyperbola:$tag-386" \ + --amend "$DOCKER_USERNAME/hyperbola:$tag-amd64" docker manifest push "$DOCKER_USERNAME/hyperbola:$latest_tag" |