From 59f15395f35a29ed20054fabe27fd8256c4ea9e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8F=B2=E9=B8=BD?= <1020103647@qq.com> Date: Sun, 10 Mar 2024 13:15:39 +0800 Subject: [PATCH] build: delete useless files --- .github/workflows/deploy-h5.yml | 49 --------------------------------- .hbuilderx/launch.json | 16 ----------- 2 files changed, 65 deletions(-) delete mode 100644 .github/workflows/deploy-h5.yml delete mode 100644 .hbuilderx/launch.json diff --git a/.github/workflows/deploy-h5.yml b/.github/workflows/deploy-h5.yml deleted file mode 100644 index c3278d8..0000000 --- a/.github/workflows/deploy-h5.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Deploy Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: ['main'] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -jobs: - # Build job - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2 - with: - version: 8 - - uses: actions/setup-node@v4 - with: - node-version: '18' - cache: 'pnpm' - - name: Install dependencies - run: pnpm i - - name: Build - run: pnpm build:h5 - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: ./dist/build/h5 - - # Deployment job - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 diff --git a/.hbuilderx/launch.json b/.hbuilderx/launch.json deleted file mode 100644 index 5f90ebe..0000000 --- a/.hbuilderx/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/ - // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数 - "version": "0.0", - "configurations": [ - { - "app-plus": { - "launchtype": "local" - }, - "default": { - "launchtype": "local" - }, - "type": "uniCloud" - } - ] -}