diff --git a/.github/workflows/fetch-playlist.yml b/.github/workflows/fetch-playlist.yml index 5547c62..b29afd9 100644 --- a/.github/workflows/fetch-playlist.yml +++ b/.github/workflows/fetch-playlist.yml @@ -1,4 +1,4 @@ -name: Update Playlist and EPG +name: Update EPG on: schedule: @@ -17,9 +17,6 @@ jobs: with: fetch-depth: 1 - - name: Download playlist.m3u8 - run: curl -o playlist.m3u8 ${{ secrets.PLAYLIST_URL }} - - name: Download epg.xml run: curl -o epg.xml ${{ secrets.EPG_URL }} @@ -27,6 +24,6 @@ jobs: run: | git config --global user.name "actions-user" git config --global user.email "actions@github.com" - git add playlist.m3u8 epg.xml - git commit -m "Update playlist and EPG" + git add epg.xml + git commit -m "Update EPG" git push --force # Force push to overwrite the previous commit