From 722b7bf6872dbe9cce92971d16624fc083df466f Mon Sep 17 00:00:00 2001 From: roschaefer Date: Mon, 8 Jun 2020 14:51:54 +0200 Subject: [PATCH] Addding cache_from changes anything? --- .github/workflows/cd.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 7cf8367..1396868 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -44,7 +44,8 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} tags: latest path: neo4j/ - push: true + cache_from: humanconnection/neo4j:latest + push: false - name: Build backend customized image uses: docker/build-push-action@v1.1.0 with: @@ -53,7 +54,8 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} tags: latest path: backend/ - push: true + cache_from: humanconnection/backend:build-and-test + push: false - name: Build webapp customized image uses: docker/build-push-action@v1.1.0 with: @@ -62,4 +64,5 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} tags: latest path: webapp/ - push: true + cache_from: humanconnection/webapp:build-and-test + push: false