vant/.github/workflows/deploy-v3-site.yml
Workflow config file is invalid. Please check your config file: yaml: line 10: did not find expected key
2021-11-06 15:39:10 +08:00

40 lines
768 B
YAML

name: Deploy V3 Site
on:
push:
branches: [dev]
paths:
- 'packages/vant/docs/**'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
ref: 'dev'
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
with:
version: 6.20.3
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build Site
run: npm run build:site
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: packages/vant/site-dist
target-folder: v3