chore: disable cache for windows builds as it keeps on breaking

This commit is contained in:
Audric Ackermann 2023-01-20 10:50:16 +11:00
parent 504f60cb97
commit 75cd2a32e3
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ jobs:
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v2
if: runner.os != 'Windows'
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}

View File

@ -31,6 +31,7 @@ jobs:
- name: Cache Desktop node_modules
id: cache-desktop-modules
uses: actions/cache@v2
if: runner.os != 'Windows'
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock', 'patches/**') }}