Merge pull request #1467 from NYPL/elasticsearch-6.8_to_7.10 #15
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
name: Deploy QA | |
#on: | |
# workflow_run: | |
# workflows: ["CI"] | |
# types: | |
# - completed | |
on: | |
push: | |
branches: | |
- tiger-team-feature | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
deploy_qa: | |
# if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'tiger-team-feature' }} | |
name: Deploy QA | |
runs-on: ubuntu-latest | |
environment: qa | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Configure AWS credentials for QA environment account | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: arn:aws:iam::946183545209:role/GithubActionsDeployerRole | |
aws-region: us-east-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: my-library-nyc-app | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
DOCKER_BUILDKIT=1 docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:qa-latest | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:qa-latest | |
- name: Force ECS Update | |
run: | | |
aws ecs update-service --cluster mylibrarynycapp-qa --service mylibrarynycapp-qa --force-new-deployment | |
aws ecs update-service --cluster mylibrarynycapp-qa --service mylibrarynycapp-qa-delayed-job --force-new-deployment |