From 7a4ef091d78401c1533de53a3ef11627eceb481a Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Mon, 17 Sep 2018 22:57:32 +0200 Subject: Use output redirection. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8ec327e3..fdb41c13 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ build-alpine-3.7: image: docker:dind script: - docker build --build-arg EXTRAS=test,lint -t django:alpine-3.7 -f docker/app/alpine/3.7/Dockerfile . - - docker save django:alpine-3.7 django_alpine_py37.tar.gz + - docker save django:alpine-3.7 > django_alpine_py37.tar.gz artifacts: paths: - django_alpine_py37.tar.gz @@ -35,7 +35,7 @@ build-alpine-3.6: image: docker:dind script: - docker build --build-arg EXTRAS=test -t django:alpine-3.6 -f docker/app/alpine/3.6/Dockerfile . - - docker save django:alpine-3.6 django_alpine_py36.tar.gz + - docker save django:alpine-3.6 > django_alpine_py36.tar.gz artifacts: paths: - django_alpine_py36.tar.gz @@ -45,7 +45,7 @@ build-stretch-3.7: image: docker:dind script: - docker build --build-arg EXTRAS=test -t django:stretch-3.7 -f docker/app/stretch/3.7/Dockerfile . - - docker save django:stretch-3.7 django_stretch_py37.tar.gz + - docker save django:stretch-3.7 > django_stretch_py37.tar.gz artifacts: paths: - django_stretch_py37.tar.gz @@ -55,7 +55,7 @@ build-stretch-3.6: image: docker:dind script: - docker build --build-arg EXTRAS=test -t django:stretch-3.6 -f docker/app/stretch/3.6/Dockerfile . - - docker save django:stretch-3.6 django_stretch_py36.tar.gz + - docker save django:stretch-3.6 > django_stretch_py36.tar.gz artifacts: paths: - django_stretch_py36.tar.gz -- cgit v1.2.3