Skip to content

chore(master): release 1.4.0 (#108) #1

chore(master): release 1.4.0 (#108)

chore(master): release 1.4.0 (#108) #1

Workflow file for this run

name: deploy gh pages
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- ".github/**"
- "dist/**"
- "CHANGELOG.md"
- "package.json"
- "package-lock.json"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup NodeJS
uses: actions/[email protected]
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 7
- name: Install and Build
run: |
pnpm install --frozen-lockfile --silent
pnpm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
git-config-name: deploy-bot