diff options
author | Scott <[email protected]> | 2019-11-10 18:02:55 +0000 |
---|---|---|
committer | Scott <[email protected]> | 2019-11-15 22:14:47 +0000 |
commit | 4a610811401a931540d2341886545677e53a6526 (patch) | |
tree | 22a6c5964a44aeac13c5098e8f4be422afc8b29c | |
parent | ad56a0b5c5f5a943d469258642cb26955aa5bb95 (diff) |
Update windows.yml
Cache must be a folder.
-rw-r--r-- | .github/workflows/windows.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6be783d7b..02b110b4b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -25,15 +25,12 @@ jobs: cd /home/runner/toolchains/ ls -la du -hs - cd .. - tar cvzf toolchain.tar.gz toolchains/ - ls -la - name: Cache Toolchain id: cache-toolchain uses: actions/cache@v1 with: - path: /home/runner/toolchain.tar.gz + path: /home/runner/toolchains/ key: mingw-toolchain - name: Build CLI and LibHB |