From f2592040cb74919aabad1d006d863b21f0c2ece0 Mon Sep 17 00:00:00 2001 From: mio <10892119+biuuu@users.noreply.github.com> Date: Thu, 29 Jun 2023 15:01:45 +0800 Subject: [PATCH] chore: delete build-update.yml --- .github/workflows/build-update.yml | 31 ------------------------------ 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/build-update.yml diff --git a/.github/workflows/build-update.yml b/.github/workflows/build-update.yml deleted file mode 100644 index 20d8d45..0000000 --- a/.github/workflows/build-update.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build Update - -on: - workflow_dispatch: - push: - branches: [ main ] - -jobs: - main: - runs-on: windows-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: '16.x' - - name: Build Update - run: | - yarn --frozen-lockfile - yarn build:dir - yarn build-update - - name: Deploy - if: success() - uses: crazy-max/ghaction-github-pages@v2 - with: - commit_message: Update app - build_dir: ./build/update - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}