From e17f8fe5d635249dd8ec89ef60a85db8c1c6134b Mon Sep 17 00:00:00 2001 From: Sze Ying Date: Thu, 16 Sep 2021 21:51:30 +0800 Subject: [PATCH] fix: allow commit and push to fail (#12) --- .github/workflows/on_master.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/on_master.yml b/.github/workflows/on_master.yml index 3f81147..efccbd2 100644 --- a/.github/workflows/on_master.yml +++ b/.github/workflows/on_master.yml @@ -17,12 +17,14 @@ jobs: - name: Build run: npm run build - name: Commit dist files + continue-on-error: true run: | git config --local user.email "ting.szeying@gmail.com" git config --local user.name "szenius" git add ./dist git commit -m "build: update dist files" - name: Push changes + continue-on-error: true uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GH_ACCESS_TOKEN }}