-
Notifications
You must be signed in to change notification settings - Fork 0
284 lines (250 loc) · 8.26 KB
/
Copy pathdeploy.yml
File metadata and controls
284 lines (250 loc) · 8.26 KB
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
name: Deploy to GCP
on:
push:
branches: [main]
paths:
- 'src/**'
- 'cloudbuild*.yaml'
- '.github/workflows/deploy.yml'
workflow_dispatch:
inputs:
deploy_api:
description: 'Deploy API'
type: boolean
default: false
deploy_addin:
description: 'Deploy Add-In'
type: boolean
default: false
deploy_worker:
description: 'Deploy Worker'
type: boolean
default: false
deploy_admin:
description: 'Deploy Admin'
type: boolean
default: false
deploy_drive:
description: 'Deploy Drive Add-In'
type: boolean
default: false
deploy_all:
description: 'Deploy ALL components'
type: boolean
default: false
env:
GCP_PROJECT_ID: fleetclaim
GCP_REGION: us-central1
WORKLOAD_IDENTITY_PROVIDER: projects/589116575765/locations/global/workloadIdentityPools/github-pool/providers/github-provider
SERVICE_ACCOUNT: github-deploy@fleetclaim.iam.gserviceaccount.com
jobs:
# Run tests first - deploy only proceeds if tests pass
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
# Detect which components changed
changes:
runs-on: ubuntu-latest
outputs:
api: ${{ steps.filter.outputs.api }}
addin: ${{ steps.filter.outputs.addin }}
worker: ${{ steps.filter.outputs.worker }}
admin: ${{ steps.filter.outputs.admin }}
drive: ${{ steps.filter.outputs.drive }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Detect changes
uses: dorny/paths-filter@v4
id: filter
with:
filters: |
api:
- 'src/FleetClaim.Api/**'
- 'src/FleetClaim.Core/**'
- 'cloudbuild-api.yaml'
addin:
- 'src/FleetClaim.AddIn.React/**'
- 'cloudbuild-addin.yaml'
worker:
- 'src/FleetClaim.Worker/**'
- 'src/FleetClaim.Core/**'
- 'cloudbuild-worker.yaml'
admin:
- 'src/FleetClaim.Admin/**'
- 'cloudbuild-admin.yaml'
drive:
- 'src/FleetClaim.DriveAddIn/**'
- 'cloudbuild-drive.yaml'
# Deploy API
deploy-api:
needs: [test, changes]
if: |
needs.changes.outputs.api == 'true' ||
(github.event_name == 'workflow_dispatch' && (inputs.deploy_api || inputs.deploy_all))
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ env.SERVICE_ACCOUNT }}
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v3
with:
project_id: ${{ env.GCP_PROJECT_ID }}
- name: Deploy API
run: |
gcloud builds submit \
--config=cloudbuild-api.yaml \
--substitutions=COMMIT_SHA=${{ github.sha }} \
--project=${{ env.GCP_PROJECT_ID }}
- name: Summary
run: |
echo "## 🚀 API Deployed" >> $GITHUB_STEP_SUMMARY
echo "**Commit:** \`${{ github.sha }}\`" >> $GITHUB_STEP_SUMMARY
# Deploy Add-In
deploy-addin:
needs: [test, changes]
if: |
needs.changes.outputs.addin == 'true' ||
(github.event_name == 'workflow_dispatch' && (inputs.deploy_addin || inputs.deploy_all))
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ env.SERVICE_ACCOUNT }}
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v3
with:
project_id: ${{ env.GCP_PROJECT_ID }}
- name: Deploy Add-In
run: |
gcloud builds submit \
--config=cloudbuild-addin.yaml \
--substitutions=COMMIT_SHA=${{ github.sha }} \
--project=${{ env.GCP_PROJECT_ID }}
- name: Summary
run: |
echo "## 🚀 Add-In Deployed" >> $GITHUB_STEP_SUMMARY
echo "**Commit:** \`${{ github.sha }}\`" >> $GITHUB_STEP_SUMMARY
# Deploy Worker
deploy-worker:
needs: [test, changes]
if: |
needs.changes.outputs.worker == 'true' ||
(github.event_name == 'workflow_dispatch' && (inputs.deploy_worker || inputs.deploy_all))
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ env.SERVICE_ACCOUNT }}
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v3
with:
project_id: ${{ env.GCP_PROJECT_ID }}
- name: Deploy Worker
run: |
gcloud builds submit \
--config=cloudbuild-worker.yaml \
--substitutions=COMMIT_SHA=${{ github.sha }} \
--project=${{ env.GCP_PROJECT_ID }}
- name: Summary
run: |
echo "## 🚀 Worker Deployed" >> $GITHUB_STEP_SUMMARY
echo "**Commit:** \`${{ github.sha }}\`" >> $GITHUB_STEP_SUMMARY
# Deploy Admin
deploy-admin:
needs: [test, changes]
if: |
needs.changes.outputs.admin == 'true' ||
(github.event_name == 'workflow_dispatch' && (inputs.deploy_admin || inputs.deploy_all))
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ env.SERVICE_ACCOUNT }}
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v3
with:
project_id: ${{ env.GCP_PROJECT_ID }}
- name: Deploy Admin
run: |
gcloud builds submit \
--config=cloudbuild-admin.yaml \
--substitutions=COMMIT_SHA=${{ github.sha }} \
--project=${{ env.GCP_PROJECT_ID }}
- name: Summary
run: |
echo "## 🚀 Admin Deployed" >> $GITHUB_STEP_SUMMARY
echo "**Commit:** \`${{ github.sha }}\`" >> $GITHUB_STEP_SUMMARY
# Deploy Drive Add-In
deploy-drive:
needs: [test, changes]
if: |
needs.changes.outputs.drive == 'true' ||
(github.event_name == 'workflow_dispatch' && (inputs.deploy_drive || inputs.deploy_all))
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ env.SERVICE_ACCOUNT }}
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v3
with:
project_id: ${{ env.GCP_PROJECT_ID }}
- name: Deploy Drive Add-In
run: |
gcloud builds submit \
--config=cloudbuild-drive.yaml \
--substitutions=COMMIT_SHA=${{ github.sha }} \
--project=${{ env.GCP_PROJECT_ID }}
- name: Summary
run: |
echo "## 🚀 Drive Add-In Deployed" >> $GITHUB_STEP_SUMMARY
echo "**Commit:** \`${{ github.sha }}\`" >> $GITHUB_STEP_SUMMARY