Skip to content

Commit

Permalink
[temp] 캐싱 관련 코드 주석 처리
Browse files Browse the repository at this point in the history
- 캐싱 부분에서 속도 저하가 발생하여 일단 주석 처리 후 여유가 생기면 개선
  • Loading branch information
Yun-YeoJun committed Feb 6, 2025
1 parent 45d224c commit 338f98d
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,22 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- 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-
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: 'gradle'
# - 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-
#
# - name: Set up JDK 21
# uses: actions/setup-java@v3
# with:
# java-version: '21'
# distribution: 'temurin'
# cache: 'gradle'

- name: Create firebase_admin_sdk_private_key.json from Secrets
run: |
Expand Down

0 comments on commit 338f98d

Please sign in to comment.