ci: fix Binaryen cache on Windows

The wrong path was used to cache binaryen, so it wasn't actually getting
cached. Therefore, wasm-opt was rebuilt on every new PR (slowing down
the "Build TinyGo release tarball" a lot).
This commit is contained in:
Ayke van Laethem
2021-11-19 15:17:07 +01:00
committed by Nia
parent bf076aed61
commit ec95d3560f
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -66,8 +66,8 @@ jobs:
uses: actions/cache@v2
id: cache-binaryen
with:
key: binaryen-v1
path: build/binaryen
key: binaryen-windows-v2
path: build/wasm-opt.exe
- name: Build Binaryen
if: steps.cache-binaryen.outputs.cache-hit != 'true'
run: make binaryen