Skip to content

배포 준비

배포 준비 #1

Workflow file for this run

name: deploy-client

Check failure on line 1 in .github/workflows/deploy-client.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-client.yml

Invalid workflow file

(Line: 27, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.11.1'
- name: Build & Export
run: |
yarn install
yarn build
- name: Deploy to S3 and Invalidate Cloudfront in prod mode
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ap-northeast-2