mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
27 lines
567 B
YAML
27 lines
567 B
YAML
name: Deploy Site
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
uses: bahmutov/npm-install@v1
|
|
|
|
- name: Build Site
|
|
run: npx --no-install vant-cli build-site
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@4.1.1
|
|
with:
|
|
branch: gh-pages
|
|
folder: site
|
|
target-folder: v3
|