Skip to content

Commit

Permalink
[chore] : cicd.yml gradle caching 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
chahyunsoo committed May 8, 2024
1 parent 4bcfdad commit 7cb27f4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ jobs:
echo "$APPLICATION_MAIN" > ./application.yml
env:
APPLICATION_MAIN: ${{ secrets.APPLICATION_MAIN }}

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

0 comments on commit 7cb27f4

Please sign in to comment.