Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix cache in Docker build workflows
  • Loading branch information
3nids committed Mar 9, 2021
1 parent 3b7142e commit ec6aa20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-docker.yml
Expand Up @@ -53,7 +53,10 @@ jobs:
uses: actions/cache@v2.1.4
with:
path: ~/.ccache
key: docker-build-${{ matrix.branch }}
key: docker-build-${{ matrix.branch }}-${{ github.sha }}
restore-keys: |
docker-build-${{ matrix.branch }}-
docker-build-master-
- name: checkout ${{ matrix.branch }}
uses: actions/checkout@v2
Expand Down

0 comments on commit ec6aa20

Please sign in to comment.