From 1bf2aea400f70afeb830cc1f5eb742fff9c4cace Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Wed, 25 Feb 2026 10:14:40 -0800 Subject: [PATCH] Delete .github/workflows/build.yml --- .github/workflows/build.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 8374c45..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Build & Commit dist - -on: - workflow_dispatch: - push: - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 22 - - - run: npm install - - - run: npm run build - - - name: Commit dist - run: | - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" - git add dist/ -f - git diff --staged --quiet && echo "No changes" && exit 0 - git commit -m "build commited by a bot." - git push