.env 로딩방식 변경

This commit is contained in:
Lectom C Han
2026-02-05 11:20:35 +09:00
parent 6537a65d74
commit 8fa50e6d0d
2 changed files with 0 additions and 10 deletions

View File

@@ -45,10 +45,5 @@ jobs:
${{ secrets.DEPLOY_ENV_FILE }}
ENVEOF
# Export variables from .env file
set -a
source .env
set +a
docker compose --env-file .env pull
docker compose --env-file .env up -d

View File

@@ -42,11 +42,6 @@ jobs:
IDP_SERVICE_URL=${{ vars.IDP_SERVICE_URL }}
ENVEOF
# Export variables from .env file
set -a
source .env
set +a
git fetch origin main
git checkout -B main origin/main
git pull --ff-only