From 568218204a9fce3861fa9403f60d978b6a9bb623 Mon Sep 17 00:00:00 2001 From: wonfen Date: Wed, 22 Nov 2023 07:06:08 +0800 Subject: [PATCH] chore: remove old updater CI --- .github/workflows/updater.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/updater.yml diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml deleted file mode 100644 index 35b82178..00000000 --- a/.github/workflows/updater.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Updater CI - -on: workflow_dispatch - -jobs: - release-update: - runs-on: ubuntu-latest - if: startsWith(github.repository, 'wonfen') - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Install Node - uses: actions/setup-node@v4 - with: - node-version: "16" - cache: "yarn" - - - name: Yarn install - run: yarn install --network-timeout 1000000 --frozen-lockfile - - - name: Release updater file - run: yarn run updater - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}