Skip to content

Merge pull request #54 from Brightspace/josephsaffron-patch-1 #17

Merge pull request #54 from Brightspace/josephsaffron-patch-1

Merge pull request #54 from Brightspace/josephsaffron-patch-1 #17

Workflow file for this run

name: Deployment
# Controls when the action will run. Triggers the workflow on push or pull request
# events not on master
on:
push:
branches:
- 'master'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: checkout@v2
uses: Brightspace/third-party-actions@actions/checkout
# see: https://github.com/aws-actions/configure-aws-credentials
- name: Assume role
uses: Brightspace/third-party-actions@aws-actions/configure-aws-credentials
with:
aws-region: us-east-1
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-session-token: ${{ secrets.AWS_SESSION_TOKEN }}
role-duration-seconds: 3600
role-skip-session-tagging: true
- name: Install packages
run: |
npm install typescript
npm i
- name: Npm Build
run: npm run build
- name: Cdk Diff ApiTestToolSetupStack
run: npx cdk diff ApiTestToolSetupStack
- name: Cdk Deploy ApiTestToolSetupStack
run: npx cdk deploy ApiTestToolSetupStack --require-approval never
# see: https://github.com/aws-actions/amazon-ecr-login
- name: Log in 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: api_test_tool_repository
IMAGE_TAG: ${{ github.sha }}
run: |
# cd ..
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./src
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
- name: Log out of Amazon ECR
if: always()
run: docker logout ${{ steps.login-ecr.outputs.registry }}
- name: Cdk Diff ApiTestToolAppStack
run: npx cdk diff ApiTestToolAppStack
- name: Cdk Deploy ApiTestToolAppStack
run: npx cdk deploy ApiTestToolAppStack --require-approval never
env:
IMAGE_TAG: ${{ github.sha }}