Skip to content

Commit

Permalink
[Feat] Run step 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
lcj1204 committed Apr 30, 2024
1 parent dd2753a commit c39cfe6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
cd ./pothole-worker-api
ls -l
java -Dspring.profiles.active=worker-dev -jar /build/libs/*.jar

0 comments on commit c39cfe6

Please sign in to comment.