Skip to content

RMC Story

RMC Story #2567

Workflow file for this run

name: RMC Story
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: Update RMC Story
run: python3 Stream/Python/RMC_Story.py > Stream/Live/RMC_Story.m3u8
- name: git add
run: |
git add -A
ls -la
- name: commit & push
run: |
git pull origin main
git commit -m "Update" -m "RMC Story"
git push origin main