Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoFresh committed Aug 16, 2021
1 parent 5fc94e4 commit 02e7d43
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/docker-compose-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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: |
Expand Down

0 comments on commit 02e7d43

Please sign in to comment.