-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (57 loc) · 2.2 KB
/
caseflow_gateway.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
name: Caseflow Gateway
on:
workflow_dispatch:
inputs:
ecr:
required: true
version:
required: true
reponame:
required: true
default: caseflow_gateway
jobs:
build:
name: Build Image
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ca-central-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build and push
uses: docker/build-push-action@v2
with:
context: ./app/caseflow_core/microservices/gateway
push: true
tags: ${{ github.event.inputs.ecr }}/${{ github.event.inputs.reponame }}:${{ github.event.inputs.version }}
- name: Download ECS Task Definition JSON file from S3
run: |
aws s3 cp s3://caseflow-secrets/caseflow-gateway-revision6.json ./ecs-task-definition/caseflow-gateway-revision6.json \
--region ca-central-1
shell: /usr/bin/bash -e {0}
env:
AWS_DEFAULT_REGION: ca-central-1
AWS_REGION: ca-central-1
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Fill in the new image ID in the Amazon ECS task definition
id: task-def
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: ./ecs-task-definition/caseflow-gateway-revision6.json
container-name: caseflow-gateway
image: ${{ github.event.inputs.ecr }}/${{ github.event.inputs.reponame }}:${{ github.event.inputs.version }}
- name: Deploy Amazon ECS Task Definition
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: ${{ steps.task-def.outputs.task-definition }}
service: caseflow-gateway
cluster: caseflow-microservices
wait-for-service-stability: true