File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,8 @@ jobs:
142
142
with :
143
143
key : |
144
144
${{ matrix.client }}-${{ hashFiles(
145
- format('clients/algoliasearch-client-javascript/packages/{0}/**', matrix.client)
145
+ format('clients/algoliasearch-client-javascript/packages/{0}/**', matrix.client),
146
+ 'yarn.lock'
146
147
)}}
147
148
path : clients/algoliasearch-client-javascript/packages/${{ matrix.client }}
148
149
@@ -258,7 +259,8 @@ jobs:
258
259
with :
259
260
key : |
260
261
algoliasearch-${{ hashFiles(
261
- 'clients/algoliasearch-client-javascript/packages/algoliasearch/**'
262
+ 'clients/algoliasearch-client-javascript/packages/algoliasearch/**',
263
+ 'yarn.lock'
262
264
)}}
263
265
path : clients/algoliasearch-client-javascript/packages/algoliasearch/
264
266
Original file line number Diff line number Diff line change @@ -300,10 +300,6 @@ async function processRelease(): Promise<void> {
300
300
} ) ;
301
301
}
302
302
303
- // We need to run a `yarn install` at this point in case the JavaScript client has changed,
304
- // otherwise we will grab dependencies from the remote
305
- await run ( 'YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install' ) ;
306
-
307
303
// We push commits to each repository AFTER all the generations are done.
308
304
// Otherwise, we will end up having broken release.
309
305
for ( const [ lang , { current, releaseType } ] of Object . entries (
You can’t perform that action at this time.
0 commit comments