fix: binaryTarget #3
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: ci | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
npm install | |
npx tsc -p tsconfig.json | |
npm install --omit=dev | |
npx prisma generate | |
mv node_modules dist/ | |
cd dist | |
zip -r ../dist.zip . | |
cd .. | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-session-name: github-actions | |
aws-region: ap-northeast-2 | |
- name: Upload to Lambda | |
run: | | |
aws lambda update-function-code --function-name sync-openapi --zip-file fileb://dist.zip |