Skip to content

chore: pnpm up

chore: pnpm up #230

Workflow file for this run

name: deploy_page
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '16'
- name: Setup pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 7.x.x
- name: Build
run: |
pnpm i --no-frozen-lockfile
pnpm build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: ./frontend/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}