Skip to content

Commit ecaab41

Browse files
committed
chore: check cloning yml file
1 parent e8774c8 commit ecaab41

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/cicd-workflow.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,20 @@ jobs:
2626
token: ${{ secrets.ACTION_TOKEN }}
2727
submodules: true
2828

29+
# 2-1. 환경변수(yml) 파일이 있는지 확인
30+
- name: Check if config files exist
31+
run: |
32+
echo "Current Directory: $(pwd)"
33+
ls -al ../config/local
34+
cat ../config/local/application-local.yml || echo "❌ yml not found"
35+
2936
# 3. Gradle 실행 권한 부여
3037
- name: Grant execute permission for Gradle
3138
run: chmod +x ./gradlew
3239

3340
# 4. Gradle로 빌드
3441
- name: Build with Gradle
35-
run: ./gradlew clean build -x test
42+
run: ./gradlew clean build
3643

3744
# 5. AWS 자격 증명 구성
3845
- name: Configure AWS credentials

0 commit comments

Comments
 (0)