Skip to content

Commit

Permalink
fix: Cache in release job
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Apr 20, 2020
1 parent d5773c8 commit 60557b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
cache-name: cache-node-modules
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-build-${{ env.cache-name }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: |
npm ci --ignore-scripts
Expand Down

0 comments on commit 60557b2

Please sign in to comment.