Add native ARM build support. Fix NET8 project structure (needs to be… #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Metrics Lambda | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- metrics/src/logsToMetrics/** | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and Deploy | |
uses: ./.github/actions/sam-build-and-deploy | |
with: | |
aws-access-key: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
dotnet-version: '8.x' | |
template-file-path: ./metrics/template.yaml | |
stack-name: metrics-lambda | |
s3-bucket-name: aws-dotnet-lambda-testing |