Skip to content

Commit 074ac15

Browse files
committed
fix: cd-develop.yml 수정
- chmod 권한 부여 수정
1 parent 0400570 commit 074ac15

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/cd-develop.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,11 @@ jobs:
2929

3030
- name: Grant execute permission to Gradle (Gradle 실행 권한 부여)
3131
run: |
32-
chmod +x ./default/gradlew
33-
chmod +x ./chat/gradlew
32+
cd default
33+
chmod +x ./gradlew
34+
cd ../chat
35+
chmod +x ./gradlew
36+
cd ..
3437
3538
# - name: Detect Changes (변경된 파일 감지)
3639
# id: changed-files

0 commit comments

Comments
 (0)