Skip to content

Commit 066e507

Browse files
authored
merge pull request #111 from feat/build-cache/1
fix: cd-develop.yml 수정
2 parents 442f8b0 + b359165 commit 066e507

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/cd-develop.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,6 @@ jobs:
6363
# echo "CHAT_CHANGED=true" >> $GITHUB_ENV
6464
# fi
6565

66-
- name: Cache Gradle - Chat (Gradle 캐시 - 채팅)
67-
uses: actions/cache@v3
68-
with:
69-
path: |
70-
chat/.gradle/caches
71-
chat/.gradle/wrapper
72-
key: gradle-chat-${{ runner.os }}-${{ hashFiles('chat/**/gradle-wrapper.properties') }}
73-
restore-keys: gradle-chat-${{ runner.os }}-
74-
7566
- name: Build JAR - Default (JAR 빌드 - 디폴트)
7667
run: |
7768
cd default
@@ -90,6 +81,15 @@ jobs:
9081
docker push $DOCKER_IMAGE_DEFAULT
9182
docker push $DOCKER_IMAGE_DEFAULT_LATEST
9283
84+
- name: Cache Gradle - Chat (Gradle 캐시 - 채팅)
85+
uses: actions/cache@v3
86+
with:
87+
path: |
88+
chat/.gradle/caches
89+
chat/.gradle/wrapper
90+
key: gradle-chat-${{ runner.os }}-${{ hashFiles('chat/**/gradle-wrapper.properties') }}
91+
restore-keys: gradle-chat-${{ runner.os }}-
92+
9393
- name: Build JAR - Chat (JAR 빌드 - 채팅)
9494
run: |
9595
cd chat

0 commit comments

Comments
 (0)