Fixes for auto playlist update

pull/225/head
KAMI 2022-10-06 09:42:22 +02:00 committed by GitHub
parent 876ecc14d5
commit 9db65fd019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -13,8 +13,9 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Update playlist - name: Update playlist
run: | run: |
git config user.name "PlaylistBot" git config user.name "PlaylistBot" || true
git config user.email "playlistbot@users.noreply.github.com" git config user.email "playlistbot@users.noreply.github.com" || true
python3 ./make_playlist.py
git add . git add .
git commit --quiet -m "Update Playlist (GitHub Actions)" git commit --quiet -m "Update Playlist (GitHub Actions)"
git push -f origin automate-1 git push -f origin master