初版提交

This commit is contained in:
2025-10-28 14:52:56 +08:00
commit 33702b7438
2 changed files with 48 additions and 0 deletions

45
.github/workflows/deploy.yml vendored Normal file
View File

@ -0,0 +1,45 @@
# This is a basic workflow to help you get started with Actions
name: deploy
# Controls when the workflow will run
on:
# Triggers the workflow on push events but only for the master branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout master
uses: actions/checkout@v3 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
ref: master
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install and Build
run: yarn && yarn build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.7
with:
token: ${{ secrets.ACCESS_TOKEN }}
single-commit: true
branch: gh-pages
clean: true
folder: dist

3
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar"]
}