央视 #16
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: 央视 | |
on: | |
schedule: | |
- cron: '40 21 * * *' | |
workflow_dispatch: | |
分支: | |
- main | |
jobs: | |
run_script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install requests | |
- name: Run Python script | |
run: python cctv.py | |
- name: Commit and push if changed | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git diff | |
if [[ -f "./直播/cctv.txt" ]]; then | |
git add ./直播/cctv.txt | |
fi | |
if ! git diff --staged --quiet; then | |
git commit -m "Auto-update live.m3u" | |
git push | |
fi | |
env: | |
TZ: Asia/Shanghai |