Delete build.yml

This commit is contained in:
2025-11-09 08:37:07 -08:00
parent bd58a4de89
commit 0edbbd610b

View File

@@ -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