itvlist #542
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: itvlist | |
on: | |
schedule: | |
- cron: '0 21 * * *' | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
#runs-on: [email protected] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.12.3' | |
- name: Install dependencies | |
run: pip install selenium==4.19.0 requests==2.31.0 futures==3.0.5 eventlet==0.36.1 | |
- name: Run itv_all | |
run: python ${{ github.workspace }}/itv_all.py | |
#- name: Run cctv | |
#run: python ${{ github.workspace }}/cctv.py | |
#- name: Run weishi | |
#run: python ${{ github.workspace }}/weishi.py | |
#- name: Run qita | |
#run: python ${{ github.workspace }}/qita.py | |
- name: 提交更改 | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "ssili126" | |
git add . | |
git commit *.txt -m "Add generated file" | |
git commit *.m3u -m "Add generated file" | |
#git pull --rebase | |
git push -f |