-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (67 loc) · 2.07 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
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@v4
with:
python-version: 3.11.6
cache: pip
- 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"
with:
environment: dev
secrets: inherit # pass all secrets
deploy-to-production:
needs: run-linters
if: github.ref_name == 'prod'
concurrency: production
uses: "./.github/workflows/deploy.yml"
with:
environment: prod
secrets: inherit # pass all secrets
notify-slack-staging:
needs: deploy-to-staging
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*'}"
notify-slack-production:
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://admg.nasa-impact.net/|Click here> to take a look!"}'
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}