From f6d021cecc47106225c846a8280e89a204b57637 Mon Sep 17 00:00:00 2001 From: Eric <132873174+eric-epsilla@users.noreply.github.com> Date: Thu, 19 Oct 2023 22:14:57 +0800 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4cb69c59..00e3bf98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,10 +49,20 @@ jobs: mv buildx-v0.11.2.linux-amd64 $HOME/.docker/cli-plugins/docker-buildx docker buildx create --use docker buildx ls - docker buildx build --build-arg="RELEASE_VERSION=${IMAGE_TAG}" --push --platform linux/amd64,linux/arm64 -t ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG} -t ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG_LATEST} --label "org.opencontainers.image.version"=$IMAGE_TAG . - - + docker buildx build --build-arg="RELEASE_VERSION=${IMAGE_TAG}" \ + --platform linux/amd64,linux/arm64 \ + --label "org.opencontainers.image.description"="Official Epsilla Vector Database Image" \ + --label "org.opencontainers.image.documentation"="https://epsilla-inc.gitbook.io/epsilladb" \ + --label "org.opencontainers.image.source"="https://github.com/epsilla-cloud/vectordb" \ + --label "org.opencontainers.image.title"="Epsilla Vector Database" \ + --label "org.opencontainers.image.url"="https://www.epsilla.com" \ + --label "org.opencontainers.image.vendor"="Epsilla" \ + --label "org.opencontainers.image.version"=$IMAGE_TAG \ + --push \ + -t ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG} \ + -t ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG_LATEST} . +