-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (70 loc) · 2.53 KB
/
cicd.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
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
name: CI/CD
on:
- push
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v1
with:
black: true
flake8: true
flake8_args: "--ignore E1,E2,E3,E5,W1,W2,W3,W5" # black already handles formatting, this prevents conflicts
deploy-to-staging:
needs: run-linters
if: github.ref_name == 'dev'
concurrency: staging
uses: "./.github/workflows/deploy.yml"
secrets: inherit # pass all secrets
with:
role-to-assume: "arn:aws:iam::854573354511:role/admg-ci-role"
role-session-name: "admg-backend-github-staging-deployment"
environment: "dev"
aws-region: "us-west-2"
vpc-id: "vpc-0caf6f6042c6f2b7c"
domain-name: "admgstaging.nasa-impact.net"
django-debug: "false"
alb-listener-arn: "arn:aws:elasticloadbalancing:us-west-2:854573354511:loadbalancer/app/admg-backend-loadbalancer/076ac577e623b5be"
deploy-to-production:
needs: run-linters
if: github.ref_name == 'prod'
concurrency: production
uses: "./.github/workflows/deploy.yml"
secrets: inherit # pass all secrets
with:
role-to-assume: "arn:aws:iam::854573354511:role/admg-ci-role"
role-session-name: "admg-backend-github-production-deployment"
environment: "prod"
aws-region: "us-west-2"
vpc-id: "vpc-0108360d661166fc3"
domain-name: "admg.nasa-impact.net"
django-debug: "false"
alb-listener-arn: "arn:aws:elasticloadbalancing:us-west-2:854573354511:loadbalancer/app/admg-production-loadbalancer/441052bf67cffa76"
notify-slack:
needs: deploy-to-production
runs-on: ubuntu-latest
if: ${{ success() }}
steps:
- name: Get first line of commit message
id: commit-msg
env:
COMMIT_MSG: ${{ github.event.head_commit.message }}
run: echo "::set-output name=first-line::${COMMIT_MSG%%$'\n*'}"
- name: Post to a Slack channel
id: slack
uses: slackapi/[email protected]
with:
channel-id: "admg"
payload: '{"text":"Successfully deployed MI to Production! <https://admgstaging.nasa-impact.net/|Click here> to take a look!"}'
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}