mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
build: add github pages deploy action (#8582)
This commit is contained in:
parent
e50f6f1c19
commit
38f02606ad
20
.github/workflows/gh-pages.yml
vendored
Normal file
20
.github/workflows/gh-pages.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
name: Build and Deploy Site
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
build-and-deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout 🛎️
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install and Build
|
||||||
|
run: |
|
||||||
|
yarn
|
||||||
|
yarn release:site
|
||||||
|
|
||||||
|
- name: Deploy 🚀
|
||||||
|
uses: JamesIves/github-pages-deploy-action@4
|
||||||
|
with:
|
||||||
|
branch: gh-pages
|
||||||
|
folder: site
|
||||||
|
target-folder: v3
|
Loading…
x
Reference in New Issue
Block a user