ci: disable pnpm action cache on Windows · openclaw/openclaw@bc3d6ba
steipete
·
2026-05-26
·
via Recent Commits to openclaw:main
File tree
.github/actions/setup-pnpm-store-cache
| Original file line number | Diff line number | Diff line change |
|---|
@@ -51,11 +51,11 @@ runs:
|
51 | 51 | with: |
52 | 52 | package_json_file: ${{ inputs.package-manager-file }} |
53 | 53 | run_install: false |
54 | | -cache: ${{ inputs.use-actions-cache }} |
| 54 | +cache: ${{ inputs.use-actions-cache == 'true' && runner.os != 'Windows' }} |
55 | 55 | cache_dependency_path: ${{ inputs.lockfile-path }} |
56 | 56 | |
57 | 57 | - name: Ensure pnpm store cache directory exists |
58 | | -if: ${{ inputs.use-actions-cache == 'true' }} |
| 58 | +if: ${{ inputs.use-actions-cache == 'true' && runner.os != 'Windows' }} |
59 | 59 | shell: bash |
60 | 60 | run: | |
61 | 61 | set -euo pipefail |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。