Skip to content

Commit

Permalink
update workflow to use imagetools to create the beta images
Browse files Browse the repository at this point in the history
Signed-off-by: Simon L <[email protected]>
  • Loading branch information
szaimen committed Mar 8, 2024
1 parent dbbe2bd commit 808bccf
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/promote-to-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,12 @@ jobs:
if [ "$AIO_NAME" != "aio-clamav" ]; then
# create multiarch image
docker manifest create nextcloud/$AIO_NAME\:beta -a nextcloud/$AIO_NAME\:develop -a nextcloud/$AIO_NAME\:develop-arm64
docker manifest push nextcloud/$AIO_NAME\:beta
docker buildx imagetools create --tag nextcloud/$AIO_NAME\:beta nextcloud/$AIO_NAME\:develop nextcloud/$AIO_NAME\:develop-arm64
# arm64
docker manifest create nextcloud/$AIO_NAME\:beta-arm64 -a nextcloud/$AIO_NAME\:develop -a nextcloud/$AIO_NAME\:develop-arm64
docker manifest push nextcloud/$AIO_NAME\:beta-arm64
docker buildx imagetools create --tag nextcloud/$AIO_NAME\:beta-arm64 nextcloud/$AIO_NAME\:develop nextcloud/$AIO_NAME\:develop-arm64
else
# amd64
docker manifest create nextcloud/$AIO_NAME\:beta -a nextcloud/$AIO_NAME\:develop
docker manifest push nextcloud/$AIO_NAME\:beta
docker buildx imagetools create --tag nextcloud/$AIO_NAME\:beta nextcloud/$AIO_NAME\:develop
fi

0 comments on commit 808bccf

Please sign in to comment.