Skip to content

Commit cbe611c

Browse files
committed
fix: Backend CI 수정
- Gradle 권한 오류 수정
1 parent 3c783ae commit cbe611c

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

.github/workflows/Backend-CI.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,11 @@ jobs:
6363
with:
6464
distribution: "graalvm"
6565
java-version: "21"
66+
cache: "gradle"
6667

67-
# Gradle 셋업
68-
- name: Set up Gradle
69-
uses: gradle/gradle-build-action@v3
70-
with:
71-
# chmod +x gradlew 와 동일
72-
cache-read-only: false
73-
74-
# Gradle 실행 권한 부여 (Set up gradle에서 부여하기 때문에 패스)
75-
# - name: Grant execute permission for gradlew
76-
# run: chmod +x gradlew
68+
# Gradle 실행 권한 부여
69+
- name: Grant execute permission for gradlew
70+
run: chmod +x gradlew
7771

7872
# Secret으로 부터 .env 생성
7973
- name: Generate .env from Secret
@@ -83,7 +77,7 @@ jobs:
8377
# Gradle 빌드 및 테스트
8478
# 빌드 / 테스트 분리
8579
- name: Execute Build
86-
run: ./gradlew clean build -x test --warning-mode=all --build-cache
80+
run: ./gradlew clean build -x test --warning-mode=all
8781

8882
- name: Execute Tests
8983
run: ./gradlew test --info

0 commit comments

Comments
 (0)