File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -177,17 +177,17 @@ runs:
177
177
- name : Cache Chocolatey packages
178
178
id : cache
179
179
uses : actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
180
- if : ${{ (inputs.skip-dependencies-cache == 'false') && (steps.collect-system-dependencies.outputs.DEPENDENCIES != '') }}
180
+ if : ${{ (inputs.skip-dependencies-cache == 'false') && (steps.collect-system-dependencies.outputs.NEEDED_DEPS != '') }}
181
181
with :
182
182
path : ~\AppData\Local\Temp\chocolatey
183
- key : choco-${{ steps.collect-system-dependencies.outputs.DEPENDENCIES }}
183
+ key : choco-${{ steps.collect-system-dependencies.outputs.NEEDED_DEPS }}
184
184
restore-keys : choco
185
185
186
186
- name : Install packages with Chocolatey
187
- if : ${{ (steps.cache.outputs.cache-hit != 'true') && (steps.collect-system-dependencies.outputs.DEPENDENCIES != '') }}
187
+ if : ${{ (steps.cache.outputs.cache-hit != 'true') && (steps.collect-system-dependencies.outputs.NEEDED_DEPS != '') }}
188
188
shell : powershell
189
189
env :
190
- NEEDED_DEPS : ${{ steps.collect-system-dependencies.outputs.DEPENDENCIES }}
190
+ NEEDED_DEPS : ${{ steps.collect-system-dependencies.outputs.NEEDED_DEPS }}
191
191
run : choco install $env:NEEDED_DEPS -y
192
192
193
193
- name : Install Miktex and update PATH with Miktex binaries
Original file line number Diff line number Diff line change
1
+ Doc build on windows input issues
You can’t perform that action at this time.
0 commit comments