diff --git a/_doc-build-windows/action.yml b/_doc-build-windows/action.yml index 24e69501d..f33cb237d 100644 --- a/_doc-build-windows/action.yml +++ b/_doc-build-windows/action.yml @@ -177,17 +177,17 @@ runs: - name: Cache Chocolatey packages id: cache uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 - if: ${{ (inputs.skip-dependencies-cache == 'false') && (steps.collect-system-dependencies.outputs.DEPENDENCIES != '') }} + if: ${{ (inputs.skip-dependencies-cache == 'false') && (steps.collect-system-dependencies.outputs.NEEDED_DEPS != '') }} with: path: ~\AppData\Local\Temp\chocolatey - key: choco-${{ steps.collect-system-dependencies.outputs.DEPENDENCIES }} + key: choco-${{ steps.collect-system-dependencies.outputs.NEEDED_DEPS }} restore-keys: choco - name: Install packages with Chocolatey - if: ${{ (steps.cache.outputs.cache-hit != 'true') && (steps.collect-system-dependencies.outputs.DEPENDENCIES != '') }} + if: ${{ (steps.cache.outputs.cache-hit != 'true') && (steps.collect-system-dependencies.outputs.NEEDED_DEPS != '') }} shell: powershell env: - NEEDED_DEPS: ${{ steps.collect-system-dependencies.outputs.DEPENDENCIES }} + NEEDED_DEPS: ${{ steps.collect-system-dependencies.outputs.NEEDED_DEPS }} run: choco install $env:NEEDED_DEPS -y - name: Install Miktex and update PATH with Miktex binaries diff --git a/doc/source/changelog/888.fixed.md b/doc/source/changelog/888.fixed.md new file mode 100644 index 000000000..cd1ee3900 --- /dev/null +++ b/doc/source/changelog/888.fixed.md @@ -0,0 +1 @@ +Doc build on windows input issues \ No newline at end of file