Skip to content

build: 👷 번들러를 vue-cli 에서 vite로 바꿨습니다. (#1774) #240

build: 👷 번들러를 vue-cli 에서 vite로 바꿨습니다. (#1774)

build: 👷 번들러를 vue-cli 에서 vite로 바꿨습니다. (#1774) #240

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [ "3.0" ]
paths:
- "docs/**"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Use Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Cache node module
uses: actions/cache@v2
id: cache
with:
path: node_modules
key: npm-packages-${{ hashFiles('**/package-lock.json') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm install
- name: Build Docs
run: npm run build:docs
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GH_ACTIONS_TOKEN }}
publish_dir: ./dist