We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad38005 commit eb41082Copy full SHA for eb41082
1 file changed
.github/workflows/cicd-workflow.yml
@@ -27,14 +27,27 @@ jobs:
27
submodules: true
28
29
# 2-1. 환경변수(yml) 파일이 있는지 확인
30
- - name: Check if config files exist
+ - name: Check if config files exist - dev
31
+ if: github.ref == 'refs/heads/develop'
32
+ run: |
33
+ echo "Current Directory: $(pwd)"
34
+ cd config
35
36
+ cd dev
37
38
+ ls -al
39
+
40
+ - name: Check if config files exist - prod
41
42
run: |
43
echo "Current Directory: $(pwd)"
44
cd config
45
- cd local
46
+ cd prod
47
48
ls -al
49
50
51
52
# 3. Gradle 실행 권한 부여
53
- name: Grant execute permission for Gradle
0 commit comments