Skip to content

Bump @vitejs/plugin-vue from 5.0.5 to 5.1.4 #56

Bump @vitejs/plugin-vue from 5.0.5 to 5.1.4

Bump @vitejs/plugin-vue from 5.0.5 to 5.1.4 #56

Workflow file for this run

name: Deploy
on:
push:
branches: [main] #main分支在push的时候会触发
paths-ignore:
- "*.md"
pull_request:
branches: [main] #main分支在PR的时候会触发
paths-ignore:
- "*.md"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Setup Nodejs
uses: actions/setup-node@v2
- name: Build project
run: |
npm install
npm run build
- name: Upload production-ready build files
uses: actions/upload-artifact@v4
with:
name: production-files
path: ./dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: production-files
path: ./dist
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist