mirror of
https://github.com/talktao/Vue3-Vite-Vant-TS-H5.git
synced 2025-06-26 14:55:22 +08:00
23 lines
654 B
YAML
23 lines
654 B
YAML
name: Vue3-Vite-Vant-TS-H5
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build-and-deploy:
|
|
concurrency: ci-${{ github.ref }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout 🛎️ # 将代码拉取到虚拟机
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install and Build 🔧 # 安装依赖、打包,如果提前已打包好无需这一步
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
|
|
- name: Deploy 🚀 # 部署
|
|
uses: JamesIves/github-pages-deploy-action@v4.3.3
|
|
with:
|
|
branch: gh-pages # 部署后提交到那个分支
|
|
folder: dist # 这里填打包好的目录名称 |