We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 066e507 commit e0b3b59Copy full SHA for e0b3b59
.github/workflows/cd-develop.yml
@@ -28,6 +28,11 @@ jobs:
28
export CR_PAT=${{ secrets.SOUNDLINK_TOKEN }}
29
echo $CR_PAT | docker login ghcr.io -u ${{ secrets.GIT_ID }} --password-stdin
30
31
+ - name: Grant execute permission to Gradle (Gradle 실행 권한 부여)
32
+ run: |
33
+ chmod +x ./default/gradlew
34
+ chmod +x ./chat/gradlew
35
+
36
- name: Cache Gradle - Default (Gradle 캐시 - 디폴트)
37
uses: actions/cache@v3
38
with:
@@ -66,7 +71,6 @@ jobs:
66
71
- name: Build JAR - Default (JAR 빌드 - 디폴트)
67
72
run: |
68
73
cd default
69
- chmod +x ./gradlew
70
74
./gradlew bootJar
75
76
- name: Docker build & push (Default)
@@ -93,7 +97,6 @@ jobs:
93
97
- name: Build JAR - Chat (JAR 빌드 - 채팅)
94
98
95
99
cd chat
96
100
101
102
- name: Docker build & push (Chat)
0 commit comments