Skip to content

Commit

Permalink
wip: update hash function
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Sep 17, 2024
1 parent 2f0636b commit 860a4a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/cache@v4
with:
path: .cache
key: linux-x64-build-cache-${{ hashFiles('.node-version') }}
key: linux-x64-build-cache-${{ hashFiles('nodejs-versions.json') }}

- name: build & package
run: |
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
uses: actions/cache@v4
with:
path: .cache
key: linux-arm64-build-cache-${{ hashFiles('.node-version') }}
key: linux-arm64-build-cache-${{ hashFiles('nodejs-versions.json') }}

- name: build & package
run: |
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
uses: actions/cache@v4
with:
path: .cache
key: macos-x64-build-cache-${{ hashFiles('.node-version') }}
key: macos-x64-build-cache-${{ hashFiles('nodejs-versions.json') }}

- name: build & package
run: |
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
uses: actions/cache@v4
with:
path: .cache
key: macos-arm64-build-cache-${{ hashFiles('.node-version') }}
key: macos-arm64-build-cache-${{ hashFiles('nodejs-versions.json') }}

- name: yarn update
run: |
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
uses: actions/cache@v4
with:
path: .cache
key: windows-x64-build-cache-${{ hashFiles('.node-version') }}
key: windows-x64-build-cache-${{ hashFiles('nodejs-versions.json') }}

- name: build & package
shell: bash
Expand Down

0 comments on commit 860a4a0

Please sign in to comment.