We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6037afe commit d81cc06Copy full SHA for d81cc06
.github/workflows/spring-zero-downtime-cicd.yml
@@ -43,7 +43,10 @@ jobs:
43
# application-prod.yml 파일을 빌드 전에 생성
44
- name: Create application-prod.yml from secret
45
run: |
46
- echo "${{ secrets.APPLICATION_PROD_YML }}" > src/main/resources/application-prod.yml
+ mkdir -p src/main/resources
47
+ cat << 'EOF' > ./src/main/resources/application-prod.yml
48
+ ${{ secrets.APPLICATION_PROD_YML }}
49
+ EOF
50
51
# 브랜치 별 active profile 설정
52
- name: Decide active profile
0 commit comments