Skip to content

build: yarn nodeLinker를 기본값을 사용하도록 한다 #407

build: yarn nodeLinker를 기본값을 사용하도록 한다

build: yarn nodeLinker를 기본값을 사용하도록 한다 #407

name: Vuepress Deploy
on:
push:
branches:
- master
- next
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- run: yarn install --frozen-lockfile
- name: Build
run: yarn build
env:
VITE_APP_KAKAO_API_KEY: ${{ secrets.VITE_APP_KAKAO_API_KEY }}
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.ACCESS_TOKEN }}
publish_dir: src/.vitepress/dist