Skip to content

feat: update version #48

feat: update version

feat: update version #48

Workflow file for this run

name: github-pages
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2.1.2
with:
node-version: 18.14.2
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm build
- run: pnpm build-example
- name: GitHub Pages
uses: crazy-max/ghaction-github-pages@v2.2.0
with:
build_dir: dist
jekyll: false # optional, default is true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}