size before fix #2883
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Indexer Build & Push Images to AWS ECR for Dev / Staging branches | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: | |
| - main | |
| - 'release/indexer/v[0-9]+.[0-9]+.x' # e.g. release/indexer/v0.1.x | |
| - 'release/indexer/v[0-9]+.x' # e.g. release/indexer/v1.x | |
| - feature/closed-pnl-fill | |
| # TODO(DEC-837): Customize github build and push to ECR by service with paths | |
| jobs: | |
| # Build and push to dev | |
| call-build-and-push-ecs-services-dev: | |
| name: (Dev) Build and Push ECS Services | |
| uses: ./.github/workflows/indexer-build-and-push-all-ecr-images.yml | |
| with: | |
| ENVIRONMENT: dev | |
| secrets: inherit | |
| # Build and push to dev2 | |
| call-build-and-push-ecs-services-dev2: | |
| name: (Dev2) Build and Push ECS Services | |
| uses: ./.github/workflows/indexer-build-and-push-all-ecr-images.yml | |
| with: | |
| ENVIRONMENT: dev2 | |
| secrets: inherit | |
| # Build and push to dev4 | |
| call-build-and-push-ecs-services-dev4: | |
| name: (Dev4) Build and Push ECS Services | |
| uses: ./.github/workflows/indexer-build-and-push-all-ecr-images.yml | |
| with: | |
| ENVIRONMENT: dev4 | |
| secrets: inherit | |
| # Build and push to staging | |
| call-build-and-push-ecs-services-staging: | |
| name: (Staging) Build and Push ECS Services | |
| uses: ./.github/workflows/indexer-build-and-push-all-ecr-images.yml | |
| with: | |
| ENVIRONMENT: staging | |
| secrets: inherit |