Skip to content

Daily Melon Playlist #542

Daily Melon Playlist

Daily Melon Playlist #542

Workflow file for this run

name: Daily Melon Playlist
on:
schedule:
# Runs at 5:05 UTC every day
- cron: '5 5 * * *'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
run: |
git clone https://github.com/JohnHKoh/MelonYTMPlaylist.git
- name: Install dependencies
run: |
python3 -m pip install ytmusicapi==0.25.2
python3 -m pip install pyquery
python3 -m pip install opencv-python
- name: Run script
env:
RAW_HEADERS: ${{ secrets.RAW_HEADERS }}
CONFIG_JSON: ${{ secrets.CONFIG_JSON }}
run: |
cd ./MelonYTMPlaylist
echo "$RAW_HEADERS" >> raw_headers.txt
echo "$CONFIG_JSON" >> config.json
cd src
python setup.py
python daily.py