commit 33702b74383e090e04b10e860496885054cdc06c Author: 初心 <13773726377@163.com> Date: Tue Oct 28 14:52:56 2025 +0800 初版提交 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"] +}