Skip to content

Commit aadc550

Browse files
committed
chore: don't use hash
1 parent 11333ec commit aadc550

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
uses: actions/cache/restore@v3
6464
with:
6565
path: .buildx-cache-${{ matrix.policy }}_${{ matrix.platform }}/*
66-
key: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}-${{ hashFiles('docker/**') }}
67-
restore-keys: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}-
66+
key: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}
67+
restore-keys: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}
6868

6969
- name: Build
7070
run: ./build.sh
@@ -74,7 +74,7 @@ jobs:
7474
uses: actions/cache/save@v3
7575
with:
7676
path: .buildx-cache-${{ matrix.policy }}_${{ matrix.platform }}/*
77-
key: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}-${{ hashFiles('docker/**') }}
77+
key: buildx-cache-${{ matrix.policy }}-${{ matrix.platform }}
7878

7979
- name: Deploy
8080
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'pypa/manylinux'

0 commit comments

Comments
 (0)