mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 04:12:45 +08:00
36 lines
744 B
YAML
36 lines
744 B
YAML
name: Build And Deploy my-vue3-template
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Setup Node.js 20.15.1
|
|
uses: actions/setup-node@master
|
|
with:
|
|
node-version: 20.15.1
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 9.5.0
|
|
|
|
- name: Build
|
|
run: pnpm install && pnpm build:prod
|
|
|
|
- name: Deploy
|
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
with:
|
|
ACCESS_TOKEN: ${{ secrets.V3_ADMIN_VITE }}
|
|
BRANCH: gh-pages
|
|
FOLDER: dist
|