fix: use seperate action for pushing changed commits to repo

This commit is contained in:
Anda Toshiki 2023-03-28 17:41:04 +08:00
parent adb7db0b5e
commit 707de21975

View File

@ -30,4 +30,8 @@ jobs:
git config --global user.name "@andatoshiki" git config --global user.name "@andatoshiki"
git add . git add .
git commit -m 'chore(update): update readme with the latest rss feeds' git commit -m 'chore(update): update readme with the latest rss feeds'
git push -f origin master - name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}