Skip to content

Commit

Permalink
修正:cache path
Browse files Browse the repository at this point in the history
pre-installed のファイルをキャッシュ対象から除外
  • Loading branch information
Seo-4d696b75 committed Nov 1, 2021
1 parent acd5304 commit 4b69750
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,12 @@ jobs:
id: ndk-cache
uses: actions/cache@v2
with:
path: ${{ env.ANDROID_HOME }}/ndk/${{ env.NDK_VERSION }}
key: ${{ runner.os }}-ndk-${{ env.NDK_VERSION }}-v3
path: |
/usr/local/lib/android/sdk/ndk
!/usr/local/lib/android/sdk/ndk/21.4.7075529
!/usr/local/lib/android/sdk/ndk/22.1.7171670
!/usr/local/lib/android/sdk/ndk/23.0.7599858
key: ${{ runner.os }}-ndk-${{ env.NDK_VERSION }}-v4
- name: setup NDK
if: steps.ndk-cache.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit 4b69750

Please sign in to comment.