Skip to content

Commit 608922e

Browse files
fix: doc build on windows input issues (#888)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent 9cef56e commit 608922e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

_doc-build-windows/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,17 +177,17 @@ runs:
177177
- name: Cache Chocolatey packages
178178
id: cache
179179
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 != '') }}
181181
with:
182182
path: ~\AppData\Local\Temp\chocolatey
183-
key: choco-${{ steps.collect-system-dependencies.outputs.DEPENDENCIES }}
183+
key: choco-${{ steps.collect-system-dependencies.outputs.NEEDED_DEPS }}
184184
restore-keys: choco
185185

186186
- 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 != '') }}
188188
shell: powershell
189189
env:
190-
NEEDED_DEPS: ${{ steps.collect-system-dependencies.outputs.DEPENDENCIES }}
190+
NEEDED_DEPS: ${{ steps.collect-system-dependencies.outputs.NEEDED_DEPS }}
191191
run: choco install $env:NEEDED_DEPS -y
192192

193193
- name: Install Miktex and update PATH with Miktex binaries

doc/source/changelog/888.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Doc build on windows input issues

0 commit comments

Comments
 (0)