Skip to content

Commit

Permalink
Package Amazon Lambda layer and deploy to S3.
Browse files Browse the repository at this point in the history
  • Loading branch information
amh-mw committed Nov 20, 2024
1 parent a01dffa commit 0e7fa6f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: cd
on:
push:
tags: ['*.*']
jobs:
deploy:
runs-on: ubuntu-latest
environment: aws
permissions:
contents: read
id-token: write
env:
AWS_BUCKET: ${{ vars.AWS_BUCKET }}
AWS_DEFAULT_REGION: ${{ vars.AWS_DEFAULT_REGION }}
AWS_ROLE: arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/${{ vars.AWS_ROLE }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: zip vtwsclib.zip vtwsclib.py
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ env.AWS_DEFAULT_REGION }}
role-to-assume: ${{ env.AWS_ROLE }}
- run: aws s3 cp vtwsclib.zip s3://${{ env.AWS_BUCKET }}/vtwsclib.zip

0 comments on commit 0e7fa6f

Please sign in to comment.