Skip to content

Commit

Permalink
ci: gradlew caching 기능 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingyum-Kim committed Aug 8, 2023
1 parent a1631fd commit d5cbec9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ jobs: # defining jobs, executed in this workflows

steps:
- uses: actions/checkout@v3 # clone repository

# Caching Gradle
- name: Cache Gradle
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties')
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK 17
uses: actions/setup-java@v3 # set up the required java version
with:
Expand Down

0 comments on commit d5cbec9

Please sign in to comment.