Push bare image tag to make build server happy

This commit is contained in:
roschaefer 2020-06-08 15:46:29 +02:00
parent b93489fe14
commit aa7e30f287

View File

@ -18,23 +18,26 @@ jobs:
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/neo4j repository: schoolsinmotion/neo4j
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: bare tags: bare
path: Human-Connection/neo4j/ path: Human-Connection/neo4j/
push: false
- name: Build backend base image - name: Build backend base image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/nitro-backend repository: schoolsinmotion/backend
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: bare tags: bare
path: Human-Connection/backend/ path: Human-Connection/backend/
push: false
- name: Build webapp base image - name: Build webapp base image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
repository: schoolsinmotion/nitro-web repository: schoolsinmotion/webapp
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: bare tags: bare
path: Human-Connection/webapp/ path: Human-Connection/webapp/
push: false
- name: Build neo4j customized image - name: Build neo4j customized image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
@ -44,7 +47,6 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: latest tags: latest
path: neo4j/ path: neo4j/
push: true
- name: Build backend customized image - name: Build backend customized image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
@ -53,7 +55,6 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: latest tags: latest
path: backend/ path: backend/
push: true
- name: Build webapp customized image - name: Build webapp customized image
uses: docker/build-push-action@v1.1.0 uses: docker/build-push-action@v1.1.0
with: with:
@ -62,4 +63,3 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
tags: latest tags: latest
path: webapp/ path: webapp/
push: true