Add reader information to instructor summary page #68
This file contains hidden or 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: | |
| - master | |
| name: Push image to ECR and force new ECS deploy | |
| jobs: | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@v2 | |
| 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: Copy client config | |
| run: 'echo $CLIENT_CONFIG | base64 -d > clientConfig.js' | |
| shell: bash | |
| env: | |
| CLIENT_CONFIG: ${{secrets.CLIENT_CONFIG}} | |
| - name: Login to Amazon ECR | |
| id: login-ecr | |
| uses: aws-actions/amazon-ecr-login@v1 | |
| - name: Build and redeploy | |
| uses: jaroldwong/ecr-push-and-ecs-deploy@v1 | |
| with: | |
| ecr-registry: ${{ steps.login-ecr.outputs.registry }} | |
| ecr-repository: 'ipa-client-prod' | |
| ecs-cluster: 'legacy' | |
| ecs-service: 'ipa-client-prod' |