Skip to content

Merge pull request #148 from yangjaecheon-otter-guardians/da-in/vite-… #89

Merge pull request #148 from yangjaecheon-otter-guardians/da-in/vite-…

Merge pull request #148 from yangjaecheon-otter-guardians/da-in/vite-… #89

Workflow file for this run

on:
push:
branches: [main]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: ./package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: CI=false npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist