From 33702b74383e090e04b10e860496885054cdc06c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=9D=E5=BF=83?= <13773726377@163.com> Date: Tue, 28 Oct 2025 14:52:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E7=89=88=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 45 ++++++++++++++++++++++++++++++++++++ .vscode/extensions.json | 3 +++ 2 files changed, 48 insertions(+) create mode 100644 .github/workflows/deploy.yml create mode 100644 .vscode/extensions.json diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..cc98cc7 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..a7cea0b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["Vue.volar"] +}