Skip to content

Commit b6ac495

Browse files
committed
chore: yml 파일 직접 지정
1 parent 64af6f6 commit b6ac495

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,6 @@ jobs:
2020
- name: Set up Docker
2121
uses: docker/setup-buildx-action@v2
2222

23-
- name: 🔍 Docker 데몬 상태 확인 🐳
24-
run: |
25-
echo "🚀 도커 데몬 상태를 확인합니다 🚀"
26-
if docker info; then
27-
echo "✅ 도커 데몬이 정상적으로 동작 중입니다! ✅"
28-
echo "🐳 도커 버전 정보 🐳"
29-
docker version
30-
echo "📦 실행 중인 컨테이너 목록 📦"
31-
docker ps
32-
else
33-
echo "❌ 도커 데몬이 동작하지 않습니다! ❌"
34-
echo "🔄 도커 서비스 상태 확인 🔄"
35-
sudo systemctl status docker || true
36-
echo "📝 도커 로그 확인 📝"
37-
sudo journalctl -u docker --no-pager -n 50 || true
38-
fi
39-
4023
- name: Set up JDK 17
4124
uses: actions/setup-java@v4
4225
with:
@@ -50,7 +33,7 @@ jobs:
5033
run: chmod +x ./gradlew
5134

5235
- name: Build with Gradle Wrapper
53-
run: ./gradlew build -Dspring.profiles.active=ci -Dlogging.level.org.springframework=DEBUG
36+
run: ./gradlew build -Dspring.profiles.active=ci -Dspring.config.location=classpath:/application.yml,classpath:/application-ci.yml
5437

5538
- name: Publish test results
5639
uses: EnricoMi/publish-unit-test-result-action@v2

0 commit comments

Comments
 (0)