From aa7e30f2871ad534e2072945fa63865cf12f2762 Mon Sep 17 00:00:00 2001 From: roschaefer Date: Mon, 8 Jun 2020 15:46:29 +0200 Subject: [PATCH] Push bare image tag to make build server happy --- .github/workflows/cd.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index c3e04aae5..922279e6e 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -18,23 +18,26 @@ jobs: uses: docker/build-push-action@v1.1.0 with: repository: schoolsinmotion/neo4j + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} tags: bare path: Human-Connection/neo4j/ - push: false - name: Build backend base image uses: docker/build-push-action@v1.1.0 with: - repository: schoolsinmotion/nitro-backend + repository: schoolsinmotion/backend + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} tags: bare path: Human-Connection/backend/ - push: false - name: Build webapp base image uses: docker/build-push-action@v1.1.0 with: - repository: schoolsinmotion/nitro-web + repository: schoolsinmotion/webapp + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} tags: bare path: Human-Connection/webapp/ - push: false - name: Build neo4j customized image uses: docker/build-push-action@v1.1.0 @@ -44,7 +47,6 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} tags: latest path: neo4j/ - push: true - name: Build backend customized image uses: docker/build-push-action@v1.1.0 with: @@ -53,7 +55,6 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} tags: latest path: backend/ - push: true - name: Build webapp customized image uses: docker/build-push-action@v1.1.0 with: @@ -62,4 +63,3 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} tags: latest path: webapp/ - push: true