Skip to content

Commit 855fa30

Browse files
committed
Disable npm cache for insiders for now
1 parent 9c48973 commit 855fa30

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/release-insiders.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ jobs:
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525
registry-url: 'https://registry.npmjs.org'
26-
cache: 'npm'
26+
# cache: 'npm'
2727

28-
- name: Use cached node_modules
29-
id: cache
30-
uses: actions/cache@v3
31-
with:
32-
path: node_modules
33-
key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }}
34-
restore-keys: |
35-
nodeModules-
28+
# - name: Use cached node_modules
29+
# id: cache
30+
# uses: actions/cache@v3
31+
# with:
32+
# path: node_modules
33+
# key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }}
34+
# restore-keys: |
35+
# nodeModules-
3636

3737
- name: Install dependencies
38-
if: steps.cache.outputs.cache-hit != 'true'
38+
# if: steps.cache.outputs.cache-hit != 'true'
3939
run: npm install
4040
env:
4141
CI: true
@@ -63,7 +63,7 @@ jobs:
6363
run: |
6464
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
6565
66-
- name: "Version based on commit: 0.0.0-insiders.${{ env.sha_short }}"
66+
- name: 'Version based on commit: 0.0.0-insiders.${{ env.sha_short }}'
6767
run: npm version 0.0.0-insiders.${{ env.sha_short }} --force --no-git-tag-version
6868

6969
- name: Publish

0 commit comments

Comments
 (0)