We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19254be commit b2fe9bbCopy full SHA for b2fe9bb
1 file changed
.github/workflows/dev_deploy.yml
@@ -77,9 +77,13 @@ jobs:
77
EOF
78
79
# 2. 인증 키 파일 생성 (경로 문제 해결)
80
- # 애플리케이션 실행 위치에 키 파일을 생성하여 경로 문제를 방지합니다.
81
- echo "${{ secrets.FIREBASE_SERVICE_KEY }}" > firebase-service-account.json
82
- echo "${{ secrets.AUTH_KEY_P8 }}" > authkey.p8
+ cat << EOF > firebase-service-account.json
+ ${{ secrets.FIREBASE_SERVICE_KEY }}
+ EOF
83
+
84
+ cat << EOF > authkey.p8
85
+ ${{ secrets.AUTH_KEY_P8 }}
86
87
88
# 3. 기존에 실행 중이던 애플리케이션 프로세스 종료
89
PID=$(ps -ef | grep java | grep *.jar | awk '{print $2}')
0 commit comments