[FIX] nohup 로그 생성 위치 변경 #9
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: SOPT Notification Production Server CD | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ main ] | ||
job: | ||
deploy: | ||
name: Deploy to AWS Lambda | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: uses: actions/checkout@v3 | ||
- name: Set Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: 'npm' | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Set AWS Credentials by export | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
run: | | ||
export AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }} | ||
export AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
export AWS_REGION=${{ secrets.AWS_REGION }} | ||
- name: Deploy | ||
run: npm run deploy:prod |