Test commit 1c5ffb2f00bfb22364f723fdf895c3df6264c0b9 #474
This file contains 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
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:0f28c6c7-d98d-4638-af9a-85b3841ca569 | |
- 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@1c5ffb2f00bfb22364f723fdf895c3df6264c0b9 | |
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@1c5ffb2f00bfb22364f723fdf895c3df6264c0b9 | |
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@1c5ffb2f00bfb22364f723fdf895c3df6264c0b9 | |
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 |