Merge pull request #292 from 2023-Winter-Bootcamp-Team-N/suha0523-pat… #210
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: 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 |