We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be5e5b commit 5f7dcfdCopy full SHA for 5f7dcfd
1 file changed
.github/workflows/build.yml
@@ -304,11 +304,16 @@ jobs:
304
with:
305
submodules: 'recursive'
306
307
- - name: Download JNI libs
308
- uses: actions/download-artifact@v3
+ # Restores jniLibs from cache
+ # `actions/cache/restore` only restores, without saving back in a post-hook
309
+ - uses: actions/cache/restore@v3
310
+ id: cache-jniLibs
311
+ env:
312
+ cache-name: jniLibs
313
- name: jniLibs
- path: mobile/src/main/jniLibs
314
+ path: mobile/src/main/jniLibs/
315
+ key: ${{ env.cache-name }}-release-${{ env.RELEASE }}-ndk-${{ env.NDK_VERSION }}-${{ hashFiles('.git/modules/aw-server-rust/HEAD') }}
316
+ fail-on-cache-miss: true
317
318
- name: Display structure of downloaded files
319
run: |
0 commit comments