Test commit 5a8a6f9dd317bca993325121613dfe9b9a0e0beb #370
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 | |
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:9deaa765-1b77-4250-9ae6-03b688ebad23 | |
- 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: us-west-2 | |
- name: Deploy Amazon ECS task definition | |
uses: aws-actions/amazon-ecs-deploy-task-definition@5a8a6f9dd317bca993325121613dfe9b9a0e0beb | |
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 |