We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8774c8 commit ecaab41Copy full SHA for ecaab41
1 file changed
.github/workflows/cicd-workflow.yml
@@ -26,13 +26,20 @@ jobs:
26
token: ${{ secrets.ACTION_TOKEN }}
27
submodules: true
28
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
+
36
# 3. Gradle 실행 권한 부여
37
- name: Grant execute permission for Gradle
38
run: chmod +x ./gradlew
39
40
# 4. Gradle로 빌드
41
- name: Build with Gradle
- run: ./gradlew clean build -x test
42
+ run: ./gradlew clean build
43
44
# 5. AWS 자격 증명 구성
45
- name: Configure AWS credentials
0 commit comments