Skip to content

Commit

Permalink
feat: gradle 캐싱 단계 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hanueleee committed Dec 31, 2023
1 parent 24da70a commit bf1261f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cicd-be.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ jobs:
distribution: 'temurin'
java-version: '11'

- name: 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: Grant execute permission for gradlew
run: chmod +x gradlew

Expand Down

0 comments on commit bf1261f

Please sign in to comment.