L'Équipe 21 #894
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: L'Équipe 21 | |
on: | |
schedule: | |
- cron: '00 */3 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Config Git | |
run: | | |
git config --global user.email "<>" | |
git config --global user.name "Félix" | |
- name: Install Dependencies | |
run: sudo apt-get update && sudo apt-get install -y openvpn && pip install streamlink | |
- name: Update L'Équipe 21 | |
run: python3 Stream/Python/LEquipe21.py > Stream/Live/LEquipe21.m3u8 | |
- name: Git Add | |
run: | | |
git add -A | |
ls -la | |
- name: Commit & Push | |
run: | | |
git pull origin main | |
git commit -m "Update" -m "L'Équipe 21" | |
git push origin main |