Skip to content

Commit

Permalink
infra: CD Workflow에 Gradle 캐싱 추가 (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdkdhoho committed May 29, 2024
1 parent ab176be commit a8ec1fe
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/prod-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ jobs:
${{ secrets.APPLICATION_STORAGE_YML }}
EOF
- name: Gradle 캐싱
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: 애플리케이션 빌드
run: |
cd /home/runner/work/ListyWave-back/ListyWave-back/
Expand Down

0 comments on commit a8ec1fe

Please sign in to comment.