Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions release-image/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,14 @@ function release {
done

# We release with our tag, e.g. 1.0.0
docker manifest create aztecprotocol/aztec:$tag \
--amend aztecprotocol/aztec:$tag-amd64 \
--amend aztecprotocol/aztec:$tag-arm64
docker manifest push aztecprotocol/aztec:$tag
docker buildx imagetools create -t aztecprotocol/aztec:$tag \
aztecprotocol/aztec:$tag-amd64 \
aztecprotocol/aztec:$tag-arm64

# We also release with our dist_tag, e.g. 'latest', 'staging' or 'nightly'.
docker manifest create aztecprotocol/aztec:$(dist_tag) \
--amend aztecprotocol/aztec:$tag-amd64 \
--amend aztecprotocol/aztec:$tag-arm64
docker manifest push aztecprotocol/aztec:$(dist_tag)
docker buildx imagetools create -t aztecprotocol/aztec:$(dist_tag) \
aztecprotocol/aztec:$tag-amd64 \
aztecprotocol/aztec:$tag-arm64
fi
}

Expand Down