-
Notifications
You must be signed in to change notification settings - Fork 7
77 lines (68 loc) · 1.64 KB
/
deploy-staging.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
---
name: Deploy to Staging Environment
on:
push:
branches:
- prod
jobs:
testing:
uses: ./.github/workflows/testing-from-ghcr.yml
secrets: inherit
linting:
uses: ./.github/workflows/linting.yml
secrets: inherit
scan-dev:
name: Zap Scan
uses: ./.github/workflows/zap-scan.yml
with:
url: "https://fac-dev.app.cloud.gov/"
deploy-infrastructure-staging:
name: Deploy infrastructure (staging)
needs:
- testing
- scan-dev
uses: ./.github/workflows/terraform-apply-env.yml
with:
environment: "staging"
autoapprove: false
secrets: inherit
new-relic-record:
name: Record deployment to New Relic
needs:
- deploy-infrastructure-staging
uses: ./.github/workflows/new-relic-deployment.yml
with:
environment: "staging"
secrets: inherit
deploy-staging:
name: Deploy application
needs:
- deploy-infrastructure-staging
uses: ./.github/workflows/deploy-application.yml
with:
environment: "staging"
secrets: inherit
scan-staging:
needs:
- deploy-staging
name: Zap Scan
uses: ./.github/workflows/zap-scan.yml
with:
url: "https://fac-staging.app.cloud.gov/"
regression-test:
needs:
- deploy-staging
name: Run Regression Tests
uses: ./.github/workflows/regression-tests.yml
secrets: inherit
with:
url: "https://fac-staging.app.cloud.gov"
environment: "staging"
generate-e2e-test-data:
needs:
- deploy-staging
name:
uses: ./.github/workflows/end-to-end-test-data-generator.yml
secrets: inherit
with:
environment: "staging"