Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
with:
java-version: '11'
distribution: 'temurin'

cache: 'gradle'

# 3) 환경변수 파일 생성
- name: make application.properties 파일 생성
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
with:
java-version: '11'
distribution: 'temurin'

cache: 'gradle'

- name: make application.properties 파일 생성
run: |
## create application.yml
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/prod-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
with:
java-version: '11'
distribution: 'temurin'

cache: 'gradle'

# 3) 환경변수 파일 생성
- name: make application.properties 파일 생성
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/prod-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
with:
java-version: '11'
distribution: 'temurin'
cache: 'gradle'

- name: make application.properties 파일 생성
run: |
Expand Down
Loading