-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.25 KB
/
sam-deploy.yaml
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
# name: Staging CI Workflow
# on:
# push:
# branches:
# - staging
# jobs:
# staging_ci_deployment:
# runs-on: arc-runner-set-dind
# steps:
# - name: Setup AWS CLI
# uses: aws-actions/configure-aws-credentials@v1
# - name: Lambda SAM Deployment
# uses: aws-actions/setup-sam@v1
# with:
# role-to-assume: arn:aws:iam::736414281642:role/ECRPushGithubActionRole
# aws-region: ap-south-1
# run: sam deploy --config-env ${{ steps.extract_branch.outputs.branch }}
# - uses: aws-actions/configure-aws-credentials@v1
on:
push:
branches:
- staging
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: aws-actions/setup-sam@v1
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::736414281642:role/LambdaDeployGithubActionRole
aws-region: ap-south-1
audience: sts.amazonaws.com
role-session-name: lambda-deploy
# sam build
- run: sam deploy --config-env staging --region ap-south-1 --stack-name sc-platform-pii-lambda-staging