Skip to content

Merge pull request #196 from 2023-Winter-Bootcamp-Team-N/BE/feat/#194 #8

Merge pull request #196 from 2023-Winter-Bootcamp-Team-N/BE/feat/#194

Merge pull request #196 from 2023-Winter-Bootcamp-Team-N/BE/feat/#194 #8

Workflow file for this run

name: Build and Deploy Django to AWS EC2
on:
push:
branches: [ main ]
env:
PROJECT_NAME: pre_view
BUCKET_NAME: preview-project
CODE_DEPLOY_APP_NAME: pre_view
DEPLOYMENT_GROUP_NAME: pre-view-CodeDeploy
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install Dependencies
run: pip install -r requirements.txt
shell: bash
- name: Run Migrations
run: python manage.py migrate
shell: bash
- name: Collect Static Files
run: python manage.py collectstatic --noinput
shell: bash
- name: Make Zip File
run: zip -qq -r ./$GITHUB_SHA.zip .
shell: bash
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2
- name: Upload to S3
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://$BUCKET_NAME/$PROJECT_NAME/$GITHUB_SHA.zip
- name: Code Deploy
run: aws deploy create-deployment --application-name $CODE_DEPLOY_APP_NAME --deployment-config-name CodeDeployDefault.OneAtATime --deployment-group-name $DEPLOYMENT_GROUP_NAME --s3-location bucket=$BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/$GITHUB_SHA.zip