diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8810537..354bf2e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -64,9 +64,15 @@ jobs: - name: Manager 모듈 실행 if: (contains(github.head_ref, 'manager') || contains(github.head_ref, 'core')) run: | - java -Dspring.profiles.active=manager-dev -jar pothole-manager-api/build/libs/*.jar + cd ./pothole-manager-api + ls -l + + java -Dspring.profiles.active=manager-dev -jar /build/libs/*.jar - name: worker 모듈 실행 if: (contains(github.head_ref, 'worker') || contains(github.head_ref, 'core')) run: | - java -Dspring.profiles.active=manager-dev -jar pothole-worker-api/build/libs/*.jar \ No newline at end of file + cd ./pothole-worker-api + ls -l + + java -Dspring.profiles.active=worker-dev -jar /build/libs/*.jar \ No newline at end of file