From 0edbbd610b58bf2901d8c9d95ae9d5f7b9de0d4e Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sun, 9 Nov 2025 08:37:07 -0800 Subject: [PATCH] Delete build.yml --- .github/workflows/build.yml | 32 -------------------------------- 1 file changed, 32 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 42a0ab2..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build and Deploy Font - -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Install Dependencies - run: npm install - - - name: Build Font - run: npm run build - - - name: Commit and Push Font - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git add dist/Stain.otf - git commit -m "Build: Generate font file via GitHub Actions" || exit 0 - git push