We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8609f1 commit c92ce30Copy full SHA for c92ce30
.github/workflows/ci.yml
@@ -187,8 +187,10 @@ jobs:
187
armTag="heroku/heroku:${{ matrix.stack-version }}${variant}_linux-arm64${TAG_SUFFIX}"
188
amdTag="heroku/heroku:${{ matrix.stack-version }}${variant}_linux-amd64${TAG_SUFFIX}"
189
for host in 'docker.io' 'public.ecr.aws'; do
190
- docker manifest create "${host}/${indexTag}" "${host}/${amdTag}" "${host}/${armTag}"
191
- docker manifest push "${host}/${indexTag}"
+ docker buildx imagetools create \
+ --tag "${host}/${indexTag}" \
192
+ "${host}/${amdTag}" \
193
+ "${host}/${armTag}"
194
done
195
196
0 commit comments