-
Notifications
You must be signed in to change notification settings - Fork 4
224 lines (213 loc) · 8.37 KB
/
deploy-production.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
name: Deploy to Production
run-name: Deploy ${{ github.ref }}
on:
push:
tags:
- 'release/**'
workflow_dispatch:
concurrency:
group: deploy-production
cancel-in-progress: false
permissions:
contents: read
id-token: write
jobs:
validate:
name: Validate commits for deployment
permissions:
contents: read
uses: ./.github/workflows/validate-deployment.yml
with:
protected-ref: main
deployment-ref: ${{ github.ref }}
build:
name: Build deployment artifacts
permissions:
contents: read
packages: write
needs:
- validate
uses: ./.github/workflows/build.yml
with:
ref: ${{ github.sha }}
docker-image-push: true
docker-image-args-ref: ${{ github.ref }}
docker-image-tag-latest: false
docker-image-version: ${{ github.ref_name }}
docker-image-tag-release: ${{ github.ref_name }}
docker-image-tag-production: true
docker-image-upload-attestations: true
docker-image-artifacts-retention-days: 90
build-api-image: false
build-console-image: true
build-api-functions: true
api-function-artifact-retention-days: 90
build-python-functions: true
python-function-artifact-retention-days: 90
build-web: true
web-artifact-retention-days: 90
web-dotenv: |
API_URL=https://api.cpf.grants.usdigitalresponse.org
DD_RUM_ENABLED='true'
DD_ENABLED='true'
DD_ENV='production'
DD_VERSION='${{ github.sha }}'
aws-auth-plan:
name: Configure AWS Credentials
permissions:
contents: read
id-token: write
needs:
- validate
uses: ./.github/workflows/aws-auth.yml
with:
aws-region: us-west-2
secrets:
gpg-passphrase: ${{ secrets.PRODUCTION_GPG_PASSPHRASE }}
role-to-assume: ${{ secrets.PRODUCTION_ROLE_ARN }}
tf-plan:
name: Plan Terraform
permissions:
contents: read
needs:
- validate
- aws-auth-plan
- build
uses: ./.github/workflows/terraform-plan.yml
with:
ref: ${{ github.sha }}
concurrency-group: run_terraform-production
api-functions-artifacts-key: ${{needs.build.outputs.api-functions-artifacts-key }}
api-functions-artifacts-path: ${{ needs.build.outputs.api-functions-artifacts-path }}
console-image: ${{ needs.build.outputs.console-image-full-name }}
python-functions-artifacts-key: ${{ needs.build.outputs.python-functions-artifacts-key }}
python-functions-artifacts-path: ${{ needs.build.outputs.python-functions-artifacts-path }}
web-artifacts-key: ${{ needs.build.outputs.web-artifacts-key }}
web-artifacts-path: ${{ needs.build.outputs.web-artifacts-path }}
aws-region: us-west-2
environment-key: production
tf-backend-config-file: production.s3.tfbackend
tf-var-file: production.tfvars
upload-artifacts: true
artifacts-retention-days: 90
secrets:
aws-access-key-id: ${{ needs.aws-auth-plan.outputs.aws-access-key-id }}
aws-secret-access-key: ${{ needs.aws-auth-plan.outputs.aws-secret-access-key }}
aws-session-token: ${{ needs.aws-auth-plan.outputs.aws-session-token }}
datadog-api-key: ${{ secrets.DATADOG_API_KEY }}
datadog-app-key: ${{ secrets.DATADOG_APP_KEY }}
gpg-passphrase: ${{ secrets.PRODUCTION_GPG_PASSPHRASE }}
publish-tf-plan:
name: Publish Terraform Plan
permissions:
contents: read
pull-requests: write
if: needs.tf-plan.result != 'skipped' || needs.tf-plan.result != 'cancelled'
needs:
- tf-plan
uses: ./.github/workflows/publish-terraform-plan.yml
with:
write-summary: true
write-comment: false
tf-fmt-outcome: ${{ needs.tf-plan.outputs.fmt-outcome }}
tf-init-outcome: ${{ needs.tf-plan.outputs.init-outcome }}
tf-plan-outcome: ${{ needs.tf-plan.outputs.plan-outcome }}
tf-plan-summary: ${{ needs.tf-plan.outputs.plan-summary-markdown }}
tf-validate-outcome: ${{ needs.tf-plan.outputs.validate-outcome }}
tf-validate-output: ${{ needs.tf-plan.outputs.validate-output }}
aws-auth-apply:
name: Configure AWS Credentials
permissions:
contents: read
id-token: write
needs:
- tf-plan
uses: ./.github/workflows/aws-auth.yml
with:
aws-region: us-west-2
environment-name: production
secrets:
gpg-passphrase: ${{ secrets.PRODUCTION_GPG_PASSPHRASE }}
role-to-assume: ${{ secrets.PRODUCTION_ROLE_ARN }}
tf-apply:
name: Deploy to Production
needs:
- build
- tf-plan
- aws-auth-apply
if: needs.tf-plan.outputs.plan-exitcode == 2
uses: ./.github/workflows/terraform-apply.yml
with:
api-functions-artifacts-key: ${{ needs.build.outputs.api-functions-artifacts-key }}
api-functions-artifacts-path: ${{ needs.build.outputs.api-functions-artifacts-path }}
python-functions-artifacts-key: ${{ needs.build.outputs.python-functions-artifacts-key }}
python-functions-artifacts-path: ${{ needs.build.outputs.python-functions-artifacts-path }}
web-artifacts-key: ${{ needs.build.outputs.web-artifacts-key }}
web-artifacts-path: ${{ needs.build.outputs.web-artifacts-path }}
tf-plan-artifacts-key: ${{ needs.tf-plan.outputs.artifacts-key }}
aws-region: us-west-2
concurrency-group: run_terraform-production
tf-backend-config-file: production.s3.tfbackend
environment-name: production
secrets:
aws-access-key-id: ${{ needs.aws-auth-apply.outputs.aws-access-key-id }}
aws-secret-access-key: ${{ needs.aws-auth-apply.outputs.aws-secret-access-key }}
aws-session-token: ${{ needs.aws-auth-apply.outputs.aws-session-token }}
datadog-api-key: ${{ secrets.DATADOG_API_KEY }}
datadog-app-key: ${{ secrets.DATADOG_APP_KEY }}
gpg-passphrase: ${{ secrets.PRODUCTION_GPG_PASSPHRASE }}
update-release:
name: Update release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/release/')
permissions:
contents: write
needs:
- build
- tf-apply
env:
GH_TOKEN: ${{ github.token }}
RELEASE_TAG: ${{ github.ref_name }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
api.github.com:443
uploads.github.com:443
github.com:443
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Download website build artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: ${{ needs.build.outputs.web-artifacts-key }}
path: ${{ needs.build.outputs.web-artifacts-path }}
- name: Download docker build attestation artifacts for console image
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: ${{ needs.build.outputs.console-attestation-artifacts-key }}
path: ${{ needs.build.outputs.console-attestation-artifacts-path }}
- name: Upload release assets
run: |
WEB_TAR_FILE="web-dist.tar.gz"
tar -czf "$WEB_TAR_FILE" -C $(dirname "$WEB_DIST_PATH") ./dist
gh release upload --clobber "$RELEASE_TAG" \
"$WEB_TAR_FILE#Client web bundle" \
"$PROVENANCE_FILE_CONSOLE#Console Docker image provenance attestations" \
"$SBOM_FILE_CONSOLE#Console Docker image SBOM attestations"
env:
WEB_DIST_PATH: ${{ needs.build.outputs.web-artifacts-path }}
PROVENANCE_FILE_CONSOLE: ${{ needs.build.outputs.console-attestation-artifacts-path }}/provenance.json
SBOM_FILE_CONSOLE: ${{ needs.build.outputs.console-attestation-artifacts-path }}/sbom.sdpx.json
- name: Get release notes
id: get
continue-on-error: true
run: gh release view "$RELEASE_TAG" --json body --jq .body > release_notes.md
- name: Add deployment history to release notes
if: always() && steps.get.outcome == 'success'
run: printf "\n- Deployed at $(date --iso-8601=seconds)\n" >> release_notes.md
- name: Update release notes and status
if: always() && steps.get.outcome == 'success'
run: gh release edit "$RELEASE_TAG" --draft=false --prerelease=false --latest --verify-tag -F release_notes.md