From b7fc998924bb52284252c9f88cb6f9734882a606 Mon Sep 17 00:00:00 2001 From: Endial Fang Date: Wed, 2 Aug 2023 10:54:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20CI/CD=20=E5=A2=9E=E5=8A=A0=20tag=20?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E7=BC=96=E8=AF=91=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8edf934..7ec664e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,6 +30,8 @@ default: # 编译阶段任务 build-arm64: stage: build + tags: + - arm64 script: - export - env @@ -37,6 +39,8 @@ build-arm64: build-amd64: stage: build + tags: + - amd64 script: - docker buildx build --platform=linux/amd64 --pull -t "$IMG_URL$IMG_TAG-linux-amd64" . --push