File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -96,17 +96,15 @@ jobs:
96
96
runs-on : ubuntu-20.04
97
97
timeout-minutes : 10
98
98
needs : setup
99
- env :
100
- matrix : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) }}
101
99
steps :
102
100
- uses : actions/checkout@v2
103
101
104
102
- name : Cache bundled specs
105
103
id : cache
106
104
uses : actions/cache@v3
107
105
with :
108
- key : ${{ matrix .cacheKey }}
109
- path : ${{ matrix .bundledPath }}
106
+ key : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .cacheKey }}
107
+ path : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .bundledPath }}
110
108
111
109
- name : Setup
112
110
if : ${{ steps.cache.outputs.cache-hit != 'true' }}
@@ -116,14 +114,14 @@ jobs:
116
114
117
115
- name : Building specs
118
116
if : ${{ steps.cache.outputs.cache-hit != 'true' }}
119
- run : yarn cli build specs ${{ matrix .toRun }}
117
+ run : yarn cli build specs ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .toRun }}
120
118
121
119
- name : Store bundled specs
122
120
uses : actions/upload-artifact@v3
123
121
with :
124
122
if-no-files-found : error
125
123
name : specs
126
- path : ${{ matrix .bundledPath }}
124
+ path : ${{ fromJSON(needs.setup.outputs.SPECS_MATRIX) .bundledPath }}
127
125
128
126
client_javascript_utils :
129
127
timeout-minutes : 10
You can’t perform that action at this time.
0 commit comments