mash-up-kr / piikii_Spring

피곤한 모임계획 끝, 키득키득 피키로 ( ͡~ ͜ʖ ͡°)
MIT License
3 stars 1 forks source link

feat: CI/CD gradle caching #44

Closed KimDoubleB closed 3 months ago

KimDoubleB commented 3 months ago

기능 설명

빌드 성능을 올리기 위해 Gradle caching에 대해 알아보고 적용해봅니다.

추가 정보

No response

K-Diger commented 3 months ago

++ 참고자료

공식문서 가이드

- uses: actions/cache@v3
  with:
    path: |
      ~/.gradle/caches
      ~/.gradle/wrapper
    key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
    restore-keys: |
      ${{ runner.os }}-gradle-