From 9deb51568d8384f30f771a95d1e1cd87dc7eacb7 Mon Sep 17 00:00:00 2001 From: overthelex Date: Thu, 2 Jul 2026 14:45:07 +0300 Subject: [PATCH] fix(ci): update EC2 deploy host to current instance IP The aipromo EC2 instance (i-0954843ea04ae47b6) public IP changed to 3.73.121.74; the workflow still pointed at the stale 63.180.21.221, so deploys failed with SSH connection timeout. DNS already resolves to the current IP. Port 22 is open in aipromo-sg and the self-hosted runner holds the deploy key, so this one-line fix restores deploys. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/ci-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-deploy.yml b/.github/workflows/ci-deploy.yml index 026b956..5bc021f 100644 --- a/.github/workflows/ci-deploy.yml +++ b/.github/workflows/ci-deploy.yml @@ -7,7 +7,7 @@ on: branches: [main] env: - EC2_HOST: 63.180.21.221 + EC2_HOST: 3.73.121.74 EC2_USER: ubuntu REMOTE_DIR: /home/ubuntu/aipromo