Skip to content

Commit

Permalink
feat: GitHub actions 캐싱 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
kikingki committed Jul 7, 2024
1 parent 00816d4 commit 283a0a5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,15 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'oracle'
distribution: 'temurin'
cache: gradle

# Gradle 설정
# Gradle 설정 (캐싱 적용)
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}

# Docker Hub 로그인
- name: Login to Docker Hub
Expand Down

0 comments on commit 283a0a5

Please sign in to comment.