Skip to content

fix - logger extra field #27

fix - logger extra field

fix - logger extra field #27

Workflow file for this run

name: Deploy
on:
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
python:
environment:
name: AWS
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Build package
run: |
poetry self add poetry-plugin-lambda-build
poetry build-lambda
- name: Deploy to AWS
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
run: |
aws lambda update-function-code \
--function-name ${{ vars.LAMBDA_FUNCTION }} \
--zip-file fileb://dist/function.zip > /dev/null