diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 11227077..0485f247 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,3 +11,12 @@ jobs: node-version: '18.x' - run: npm ci - run: npm run build --if-present + - name: Commit & Push + run: | + git config user.name github-actions + git config user.email github-actions@github.com + git add -A . + git commit -m "auto build" + git push + env: + GITHUB_TOKEN: ${{ secrets.GH_PAT }}