mirror of https://github.com/Free-TV/IPTV
22 lines
516 B
YAML
22 lines
516 B
YAML
name: Update playlist
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-plalist:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Update playlist
|
|
run: |
|
|
git config user.name "PlaylistBot" || true
|
|
git config user.email "playlistbot@users.noreply.github.com" || true
|
|
python3 ./make_playlist.py
|
|
git add .
|
|
git commit --quiet -m "Update Playlist (GitHub Actions)"
|
|
git push -f origin master
|