-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (41 loc) · 1.59 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 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