-
Notifications
You must be signed in to change notification settings - Fork 116
59 lines (51 loc) · 1.64 KB
/
indexer-build-and-push-all-ecr-images.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
name: Indexer Build & Push ECR Images
on: # yamllint disable-line rule:truthy
workflow_call:
inputs:
ENVIRONMENT:
required: true
type: string
jobs:
# Build and push
call-build-and-push-ecs-service-ender:
uses: ./.github/workflows/indexer-reusable-build-and-push-ecs-service.yml
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
SERVICE: ender
secrets: inherit
call-build-and-push-ecs-service-comlink:
uses: ./.github/workflows/indexer-reusable-build-and-push-ecs-service.yml
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
SERVICE: comlink
secrets: inherit
call-build-and-push-ecs-service-socks:
uses: ./.github/workflows/indexer-reusable-build-and-push-ecs-service.yml
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
SERVICE: socks
secrets: inherit
call-build-and-push-ecs-service-roundtable:
uses: ./.github/workflows/indexer-reusable-build-and-push-ecs-service.yml
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
SERVICE: roundtable
secrets: inherit
call-build-and-push-vulcan:
uses: ./.github/workflows/indexer-reusable-build-and-push-ecs-service.yml
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
SERVICE: vulcan
secrets: inherit
call-build-and-push-bazooka-lambda:
uses: ./.github/workflows/indexer-build-and-push-lambda.yml
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
SERVICE: bazooka
secrets: inherit
call-build-and-push-auxo-lambda:
uses: ./.github/workflows/indexer-build-and-push-lambda.yml
with:
ENVIRONMENT: ${{ inputs.ENVIRONMENT }}
SERVICE: auxo
secrets: inherit