Skip to content

Commit

Permalink
fix yml file syntax --again
Browse files Browse the repository at this point in the history
  • Loading branch information
cankurttekin committed Nov 19, 2024
1 parent 0baceed commit b648ef9
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,20 +64,20 @@ jobs:
ssh -o StrictHostKeyChecking=no $EC2_USER@$EC2_HOST << 'EOF'
mkdir -p ~/job-application-tracker
cat <<EOT > ~/job-application-tracker/.env
APP_URL=${APP_URL}
PORT=${PORT}
ALLOWED_ORIGINS=${ALLOWED_ORIGINS}
DB_USER=${DB_USER}
DB_PASS=${DB_PASS}
GEMINI_API_KEY=${GEMINI_API_KEY}
KEY_STORE_PASS=${KEY_STORE_PASS}
KEY_STORE_ALIAS=${KEY_STORE_ALIAS}
MAIL_HOST=${MAIL_HOST}
MAIL_PORT=${MAIL_PORT}
MAIL_USER=${MAIL_USER}
MAIL_PASS=${MAIL_PASS}
TURNSTILE_SECRET=${TURNSTILE_SECRET}
EOT
APP_URL=${APP_URL}
PORT=${PORT}
ALLOWED_ORIGINS=${ALLOWED_ORIGINS}
DB_USER=${DB_USER}
DB_PASS=${DB_PASS}
GEMINI_API_KEY=${GEMINI_API_KEY}
KEY_STORE_PASS=${KEY_STORE_PASS}
KEY_STORE_ALIAS=${KEY_STORE_ALIAS}
MAIL_HOST=${MAIL_HOST}
MAIL_PORT=${MAIL_PORT}
MAIL_USER=${MAIL_USER}
MAIL_PASS=${MAIL_PASS}
TURNSTILE_SECRET=${TURNSTILE_SECRET}
EOT
EOF
# Start Application on EC2
Expand Down

0 comments on commit b648ef9

Please sign in to comment.