Massive frontend updates #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Django to EC2 | |
on: | |
push: | |
branches: "master" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1: Checkout the latest code | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# Step 2: Run the deployment script | |
- name: Run Deployment | |
run: | | |
ssh -i ${{ secrets.EC2_SSH_KEY }} [email protected] 'bash -s' < deploy_script.sh | |
env: | |
ACTIONS_RUNNER_DEBUG: false |