Skip to content

Commit

Permalink
Merge pull request #48 from falconlee236/fix/aws-s3-githubAction
Browse files Browse the repository at this point in the history
[FIX] aws s3 sdk에서 발생하는 빌드 오류 해결
  • Loading branch information
falconlee236 authored Nov 6, 2024
2 parents 7caeea1 + c23653f commit c9cfe52
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/customCI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ jobs:
with:
node-version: 20
cache: 'npm'
- name: create .env.local with aws credentials
env:
AWS_S3_REGION: ap-northeast-2
AWS_S3_BUCKET: puangbe
run: |-
cat > .env.local << EOF
AWS_S3_REGION=$AWS_S3_REGION
AWS_S3_BUCKET=$AWS_S3_BUCKET
AWS_S3_ACCESS_ID=${{ secrets.AWS_S3_ACCESS_ID }}"
AWS_S3_ACCESS_KEY=${{ secrets.AWS_S3_ACCESS_KEY }}"
EOF
- name: npm package install
run: npm ci
- name: run eslint
Expand Down

0 comments on commit c9cfe52

Please sign in to comment.