-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (104 loc) · 3.45 KB
/
build-deploy.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: Build and Deploy
on:
push:
branches:
- dev
- main
- automation-**
env:
DWOLLA_APP_KEY: ${{ secrets.DWOLLA_SANDBOX_KEY }}
DWOLLA_APP_SECRET: ${{ secrets.DWOLLA_SANDBOX_SECRET }}
DWOLLA_HOST: "sandbox"
FIREBASE_SERVER_KEY: ${{ secrets.FIREBASE_SERVER_KEY }}
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Set up Python 3.7 environment
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: "3.7"
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Run our unit tests
- name: Run unit tests
run: |
python tests.py
deploy-to-test:
# Only run this job if "build" has ended successfully
needs:
- build
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Set up Python 3.7 environment
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: "3.7"
- name: Initialize environment variables
run: |
export "BRANCH=${GITHUB_REF#/refs/heads/}"
echo "GIT_BRANCH=$BRANCH" >> $GITHUB_ENV
# Set deploy environment
if [[ "$BRANCH" == "refs/heads/main" ]]; then
echo "DEPLOY_ENV=worxstr-backend-prod-env" >> $GITHUB_ENV
elif [[ "$BRANCH" == "refs/heads/dev" ]]; then
echo "DEPLOY_ENV=worxstr-backend-dev2-env" >> $GITHUB_ENV
else
echo "DEPLOY_ENV=worxstr-backend-qa-env" >> $GITHUB_ENV
fi
# Set up cache for pip
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Elastic Beanstalk CLI version
- name: Get EB CLI version
run: |
python -m pip install --upgrade pip
pip install awsebcli --upgrade
eb --version
# Configure AWS Credentials
- 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: us-east-1
# Create the Elastic Beanstalk application
- name: Create EBS application
run: |
eb init -p python-3.7 Worxstr-Backend --region us-east-1 --debugboto
# Deploy to (or Create) the Elastic Beanstalk environment
- name: Deploy to mapped environment
run: |
env | sort
eb use "$DEPLOY_ENV"
eb status "$DEPLOY_ENV"
eb deploy