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 9cbc674 commit c396921Copy full SHA for c396921
.github/workflows/CI-CD_Pipeline.yml
@@ -77,11 +77,12 @@ 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: |
84
- echo "${{ secrets.ENV_BASE64 }}" | tr -d '\r\n' | base64 --decode > .env
+ set -euo pipefail
+ install -d -m 700 .
85
+ echo "${{ secrets.ENV_BASE64 }}" | base64 -d > .env
86
chmod 600 .env
87
test -s .env || { echo ".env is empty"; exit 1; }
88
0 commit comments