diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a02823a..558d9de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: CI on: push: branches: - - "**" + - main jobs: build: @@ -11,8 +11,14 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 18.x cache: "npm" - run: npm install --no-package-lock - - run: npm run build \ No newline at end of file + - run: npm run build + + - uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "build: ${{ github.sha }}" + branch: build + commit_options: "--no-verify"