mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Fixed checks.yml hashFiles not using the correct glob pattern
This project requirements files are named .txt and .dev
This commit is contained in:
parent
1962456821
commit
000c4c6428
1 changed files with 1 additions and 1 deletions
2
.github/workflows/checks.yml
vendored
2
.github/workflows/checks.yml
vendored
|
@ -97,7 +97,7 @@ jobs:
|
|||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ${{ github.workspace }}${{ matrix.SEP }}pyenv
|
||||
key: ${{ runner.os }}-pyenv-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/Makefile') }}-14-
|
||||
key: ${{ runner.os }}-pyenv-${{ hashFiles('**/requirements.*') }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/Makefile') }}-14-
|
||||
|
||||
- name: Cache pip wheels
|
||||
if: matrix.BUILD_TYPE == 'build'
|
||||
|
|
Loading…
Reference in a new issue