-
Notifications
You must be signed in to change notification settings - Fork 241
64 lines (55 loc) · 2.27 KB
/
test-workflow.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
on:
push:
branches:
- integ-tests
name: Integration Test
permissions:
id-token: write
contents: read
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Print current build ID
run: |
echo Integration test run: githubactionsamazonecsdeplo-NWcjHIgDJLXw:8500e78f-34dc-404f-a2bd-afddbe5f0139
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/GitHubActionsDeployTaskIntegrationTests
role-session-name: deploy_task_integration_tests
aws-region: us-west-2
- name: Deploy Amazon ECS task definition with one-off task and wait for task stopped set to false
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: task-definition-run-task.json
cluster: github-actions-deploy-task-def-integ-test
run-task: true
run-task-subnets: subnet-e5604fce, subnet-fe9355b4, subnet-c49431bc, subnet-392f9b64
run-task-assign-public-IP: ENABLED
run-task-security-groups: sg-067ebcde49c0f3ad8
run-task-launch-type: FARGATE
wait-for-task-stopped: false
- name: Deploy Amazon ECS task definition with one-off task and wait for task stopped set to true
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: task-definition-run-task.json
cluster: github-actions-deploy-task-def-integ-test
run-task: true
run-task-subnets: subnet-e5604fce, subnet-fe9355b4, subnet-c49431bc, subnet-392f9b64
run-task-assign-public-IP: ENABLED
run-task-security-groups: sg-067ebcde49c0f3ad8
run-task-launch-type: FARGATE
wait-for-task-stopped: true
enable-ecs-managed-tags: true
- name: Deploy Amazon ECS task definition with ECS Service
uses: aws-actions/amazon-ecs-deploy-task-definition@82e46a89773204998cca74ab511e71c8eed45fc5
with:
task-definition: task-definition.json
service: github-actions-deploy-task-def-integ-test
cluster: github-actions-deploy-task-def-integ-test
wait-for-service-stability: true
enable-ecs-managed-tags: true