France 24 #411
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: France 24 | |
on: | |
schedule: | |
- cron: '08 */3 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: config | |
run: | | |
git config --global user.email "<>" | |
git config --global user.name "Félix" | |
- name: Install Dependencies | |
run: pip install requests | |
- name: Update France 24 | |
run: python3 Stream/Python/France24.py > Stream/Live/France24.m3u8 | |
- name: git add | |
run: | | |
git add -A | |
ls -la | |
- name: commit & push | |
run: | | |
git pull origin main | |
git commit -m "Update" -m "France 24" | |
git push origin main |