From 8ddc5d982901c1af789810d1333a78631b899d40 Mon Sep 17 00:00:00 2001 From: Guancheng Fu <110874468+gc-fu@users.noreply.github.com> Date: Thu, 20 Oct 2022 10:00:33 +0800 Subject: [PATCH] [CICD] fix missing "\" issue in workflow Add missing "\" in github workflow --- .github/workflows/manually_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manually_build.yml b/.github/workflows/manually_build.yml index 8fefad2c..327feec1 100644 --- a/.github/workflows/manually_build.yml +++ b/.github/workflows/manually_build.yml @@ -117,7 +117,7 @@ jobs: --build-arg https_proxy=${HTTPS_PROXY} \ --build-arg no_proxy=${NO_PROXY} \ --build-arg BASE_IMAGE_NAME=${base_image} \ - --build-arg BASE_IMAGE_TAG=${TAG} + --build-arg BASE_IMAGE_TAG=${TAG} \ -t ${image}:${TAG} -f ./Dockerfile . sudo docker push ${image}:${TAG} sudo docker tag ${image}:${TAG} 10.239.45.10/arda/${image}:${TAG}