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 89fea35 commit c8567baCopy full SHA for c8567ba
.github/workflows/CI-CD_Pipeline.yml
@@ -77,12 +77,11 @@ jobs:
77
echo "Qdrant is ready!"
78
79
# ✅ application-test.yml에서 사용하는 모든 환경변수를 .env 파일에 생성
80
+
81
- name: Create test .env file
82
working-directory: backend
83
run: |
- set -euo pipefail
84
- install -d -m 700 .
85
- echo "${{ secrets.ENV_BASE64 }}" | base64 -d > .env
+ echo "${{ secrets.ENV_BASE64 }}" | tr -d '\r\n' | base64 --decode > .env
86
chmod 600 .env
87
test -s .env || { echo ".env is empty"; exit 1; }
88
0 commit comments