Skip to content

Commit c92ce30

Browse files
authored
Replace docker manifest create with docker buildx imagetools create (#373)
1 parent e8609f1 commit c92ce30

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,10 @@ jobs:
187187
armTag="heroku/heroku:${{ matrix.stack-version }}${variant}_linux-arm64${TAG_SUFFIX}"
188188
amdTag="heroku/heroku:${{ matrix.stack-version }}${variant}_linux-amd64${TAG_SUFFIX}"
189189
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}"
190+
docker buildx imagetools create \
191+
--tag "${host}/${indexTag}" \
192+
"${host}/${amdTag}" \
193+
"${host}/${armTag}"
192194
done
193195
done
194196

0 commit comments

Comments
 (0)