Hello, sorry to disturb once. I am caching konan ...
# kotlin-native
a
Hello, sorry to disturb once. I am caching konan on github actions like this
Copy code
- name: Cache konan
        uses: actions/cache@v2
        with:
          path: |
            ~/.konan/dependencies
            ~/.konan/kotlin-native-macos*
          key: ${{ runner.os }}-konan-${{ hashFiles('**/*.konan*') }}
          restore-keys: ${{ runner.os }}-konan-
And everytime I am getting a cache hit of only 22 Bytes like so
Copy code
Run actions/cache@v2
Received 22 of 22 (100.0%), 0.0 MBs/sec
Cache Size: ~0 MB (22 B)
/usr/bin/tar --use-compress-program zstd -d -xf /Users/runner/work/_temp/8838d26b-8362-491f-b5ad-890e93ab98e0/cache.tzst -P -C /Users/runner/work/builders/builders
Cache restored from key: macOS-konan-
What am I doing wrong?