feat: When publishing a studio image, change the latest tag in DockerHub to the latest images (#27378)

Add command to change the latest tag in DockerHub to the latest images.
This commit is contained in:
Ivan Vasilov
2024-06-19 13:45:10 +02:00
committed by GitHub
parent 57197f5c05
commit 22b76fecaf

View File

@@ -121,6 +121,9 @@ jobs:
docker buildx imagetools create -t supabase/studio:${{ needs.settings.outputs.image_version }} \
supabase/studio@${{ needs.release_x86.outputs.image_digest }} \
supabase/studio@${{ needs.release_arm.outputs.image_digest }}
docker buildx imagetools create -t supabase/studio:latest \
supabase/studio@${{ needs.release_x86.outputs.image_digest }} \
supabase/studio@${{ needs.release_arm.outputs.image_digest }}
publish:
needs: