-
Notifications
You must be signed in to change notification settings - Fork 3
64 lines (53 loc) · 2.07 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# This is a basic workflow to help you get started with Actions
name: ci
# 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 Diff ApiTestToolAppStack
run: npx cdk diff ApiTestToolAppStack
- 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 }}