Skip to content

Commit 76e5b62

Browse files
authored
Merge pull request #220 from prgrms-web-devcourse-final-project/develop
chore[deploy]: Prod 변경
2 parents 5db6cb8 + c012a14 commit 76e5b62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI-CD_Pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
run: |
8383
set -euo pipefail
8484
install -d -m 700 .
85-
echo "${{ secrets.ENV_BASE64 }}" | base64 -d > .env
85+
echo "${{ secrets.DEV_ENV_BASE64 }}" | base64 -d > .env
8686
chmod 600 .env
8787
test -s .env || { echo ".env is empty"; exit 1; }
8888
@@ -216,7 +216,7 @@ jobs:
216216
# EC2 내부에서 prod.env 복원 (ENV_BASE64 -> 디코드)
217217
install -d -m 700 /home/ec2-user/configs
218218
cat > /home/ec2-user/configs/prod.env.b64 <<'__B64__'
219-
${{ secrets.ENV_BASE64 }}
219+
${{ secrets.PROD_ENV_BASE64 }}
220220
__B64__
221221
222222
base64 -d /home/ec2-user/configs/prod.env.b64 > /home/ec2-user/configs/prod.env

0 commit comments

Comments
 (0)