File tree 3 files changed +3
-3
lines changed 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,6 @@ jobs:
213
213
type : utils
214
214
215
215
- name : Setup
216
- if : ${{ steps.cache.outputs.cache-hit != 'true' }}
217
216
uses : ./.github/actions/setup
218
217
219
218
- name : Generate clients
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ async function getClientMatrix(baseBranch: string): Promise<void> {
83
83
}
84
84
85
85
matrix [ language ] . toRun . push ( client ) ;
86
- matrix [ language ] . cacheToCompute . push ( `specs/bundled/ ${ bundledSpec } .yml ` ) ;
86
+ matrix [ language ] . cacheToCompute . push ( `specs/${ bundledSpec } ` ) ;
87
87
}
88
88
89
89
const clientMatrix : Matrix < ClientMatrix > = {
@@ -102,6 +102,7 @@ async function getClientMatrix(baseBranch: string): Promise<void> {
102
102
toRun : matrix [ language ] . toRun . join ( ' ' ) ,
103
103
cacheKey : await computeCacheKey ( `clients-${ language } ` , [
104
104
...matrix [ language ] . cacheToCompute ,
105
+ 'specs/common' ,
105
106
`templates/${ language } ` ,
106
107
`generators/src` ,
107
108
] ) ,
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ buildCommand
184
184
const outputFormat = outputJson ? 'json' : 'yml' ;
185
185
186
186
let clientsTodo = client ;
187
- if ( client === [ 'all' ] ) {
187
+ if ( client [ 0 ] === 'all' ) {
188
188
clientsTodo = CLIENTS ;
189
189
}
190
190
// ignore cache when building from cli
You can’t perform that action at this time.
0 commit comments