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 4e1cf77 commit acd5304
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
NDK_VERSION: 21.3.6528147
jobs:
format:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event.pull_request.merged == true && !startsWith(github.head_ref, 'feature/format')
steps:
- name: chekout
Expand All @@ -28,8 +28,8 @@ jobs:
id: ndk-cache
uses: actions/cache@v2
with:
path: /usr/local/lib/android/sdk/ndk
key: ${{ runner.os }}-ndk-${{ env.NDK_VERSION }}-v2
path: ${{ env.ANDROID_HOME }}/ndk/${{ env.NDK_VERSION }}
key: ${{ runner.os }}-ndk-${{ env.NDK_VERSION }}-v3
- name: setup NDK
if: steps.ndk-cache.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit acd5304

Please sign in to comment.