Skip to content

feat : 신규 API 이전사항 반영 #17

feat : 신규 API 이전사항 반영

feat : 신규 API 이전사항 반영 #17

Workflow file for this run

name: Deploy to Github Pages
permissions:
contents: write
on:
workflow_dispatch:
push:
branches: [frontend]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: frontend
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Build
run: |
yarn install
yarn build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: out
clean: true
single-commit: true