From 0d2a096061417d0dbb869949c714a3e018be19eb Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Fri, 8 Oct 2021 15:14:40 +0200 Subject: [PATCH] Updated build script --- .github/workflows/images_build_windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/images_build_windows.yml b/.github/workflows/images_build_windows.yml index b8d584726..316543b41 100644 --- a/.github/workflows/images_build_windows.yml +++ b/.github/workflows/images_build_windows.yml @@ -99,8 +99,9 @@ jobs: $tags='${{ steps.meta.outputs.tags }}' $result_tags = '' foreach ($line in $tags) { - $result_tags = $result_tags + '--tag ' + $line + $result_tags = $result_tags + ' --tag=' + $line } + echo $result_tags docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} docker build --file=.\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\Dockerfile.${{ matrix.build }} $result_tags .\Dockerfiles\${{ env.BASE_BUILD_NAME }}\windows\ docker push image push --all-tags ${{ steps.meta.outputs.tags[0] }}