From 240008b88e018d6106a01d82015e2336f257505e Mon Sep 17 00:00:00 2001 From: sunghyun <101376904+sunghyun0610@users.noreply.github.com> Date: Tue, 7 Jan 2025 01:35:04 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20gradle=20working-directory=20meerket?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EC=84=A4=EC=A0=95=ED=95=B4=EC=A3=BC?= =?UTF-8?q?=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-pr.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 78bd84f..8dce0d1 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -27,6 +27,9 @@ jobs: - name: List project files run: ls -l # 디렉토리 구조 확인 + + - name: List meerket directory files + run: ls -l meerket # meerket 디렉토리 구조 확인 - name: Ensure Gradlew is Executable run: chmod +x ./meerket/gradlew # gradlew에 실행 권한 부여 @@ -46,5 +49,6 @@ jobs: - name: Clean Build with Gradle Wrapper + working-directory: ./meerket run: ./meerket/gradlew clean build --no-daemon --info