Skip to content

Commit

Permalink
Add Docker CI cache (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyShorokhov authored Mar 31, 2024
2 parents 368df60 + 0cec78e commit 76f7df9
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 }}-${{ matrix.branch }}
restore-keys: |
${{ runner.os }}-buildx-${{ matrix.branch }}
- name: Log in to Docker Hub
if: github.ref == 'refs/heads/master'
uses: docker/[email protected]
Expand All @@ -49,4 +57,6 @@ jobs:
platforms: ${{ env.DOCKER_PLATFORMS }}
push: ${{ github.ref == 'refs/heads/master' }}
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 76f7df9

Please sign in to comment.