Skip to content

Commit

Permalink
fix: allow commit and push to fail (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
szenius authored Sep 16, 2021
1 parent c9c6ae9 commit e17f8fe
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/on_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "[email protected]"
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 }}
Expand Down

0 comments on commit e17f8fe

Please sign in to comment.