Skip to content

Commit

Permalink
Add Cache Docker layers
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyShorokhov committed Mar 31, 2024
1 parent 701bead commit 6c99b19
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ jobs:
- name: Set up Docker Buildx
uses: docker/[email protected]

- name: Cache Docker layers
uses: actions/[email protected]
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Log in to Docker Hub
if: github.ref == 'refs/heads/master'
uses: docker/[email protected]
Expand All @@ -50,4 +58,6 @@ jobs:
platforms: ${{ env.DOCKER_PLATFORMS }}
push: true
tags: ${{ env.DOCKER_IMAGE }}:${{ matrix.branch }}
build-args: ${{ matrix.build-args }}
build-args: ${{ matrix.build-args }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache

0 comments on commit 6c99b19

Please sign in to comment.