From 832f7fc258e29bd4c4b10fdea4369bd6c52ab170 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 22 Aug 2025 19:58:02 -0700 Subject: [PATCH] Create BUILD.yml --- .github/workflows/BUILD.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/BUILD.yml diff --git a/.github/workflows/BUILD.yml b/.github/workflows/BUILD.yml new file mode 100644 index 0000000..1ec4844 --- /dev/null +++ b/.github/workflows/BUILD.yml @@ -0,0 +1,23 @@ +on: + workflow_dispatch: + push: +permissions: write-all +jobs: + build-push: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/setup-node@v4 + with: + node-version: '22' + - run: | + npm install + npm run build + - run: | + git config user.name "github-actions" + git config user.email "github-actions@github.com" + git add . + git commit -m "This build was committed by a bot." + git push