Setting up CI/CD Through Github Actions
Step 1 — Generate a CI/CD-friendly SSH key on your EC2 Open your EC2 terminal and run: # Generate a new SSH key specifically for GitHub Actions ssh-keygen -t rsa -b 4096 -m PEM -C "github-actions" -f ~/github_ec2_ci_key -N "" Explanation: -t rsa → ...







