Skip to content

Commit 1f8f6e1

Browse files
committed
[Fix]: gradle wrapper 권한 추가 및 에러 수정
1 parent 2043cd2 commit 1f8f6e1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
steps:
2222
- name: Checkout code
2323
uses: actions/checkout@v4
24+
25+
- name: Make gradlew executable
26+
run: chmod +x ./gradlew
2427

2528
- name: Set up JDK 21
2629
uses: actions/setup-java@v3
@@ -32,14 +35,15 @@ jobs:
3235
uses: gradle/gradle-build-action@v2
3336

3437
- name: Run tests
35-
run: ./gradlew test
38+
run: ./gradlew test --no-daemon
3639

3740
- name: Upload test results
3841
uses: actions/upload-artifact@v4
3942
if: always()
4043
with:
4144
name: test-results
4245
path: build/test-results/
46+
if-no-files-found: ignore
4347

4448
build:
4549
name: Build and Push Image

0 commit comments

Comments
 (0)