From 02e7d4375575da7bd7714ef55e81584c37686305 Mon Sep 17 00:00:00 2001 From: CyanoFresh Date: Tue, 17 Aug 2021 00:59:08 +0300 Subject: [PATCH] fix --- .github/workflows/docker-compose-publish.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker-compose-publish.yml b/.github/workflows/docker-compose-publish.yml index e9e89ad..af36ba6 100644 --- a/.github/workflows/docker-compose-publish.yml +++ b/.github/workflows/docker-compose-publish.yml @@ -71,7 +71,7 @@ jobs: context: ./app1 file: ./app1/Dockerfile load: true - push: false + push: true builder: ${{ steps.buildx.outputs.name }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} @@ -84,18 +84,18 @@ jobs: context: ./app2 file: ./app2/Dockerfile load: true - push: false + push: true builder: ${{ steps.buildx.outputs.name }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new - - name: Build the stack - run: docker-compose build --pull --build-arg BUILDKIT_INLINE_CACHE=1 - - - name: Push the stack - run: docker-compose push +# - name: Build the stack +# run: docker-compose build --pull --build-arg BUILDKIT_INLINE_CACHE=1 +# +# - name: Push the stack +# run: docker-compose push - name: Move cache run: |