8000 Add generated file · zzmaze/iptv@5293fed · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

itvlist

itvlist #2680

Workflow file for this run

name: itvlist
on:
schedule:
- cron: '0 2,6,10,14,18,22 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: pip install selenium requests futures eventlet
- name: Run itv
run: python ${{ github.workspace }}/iptv.py
- name: Run qita
run: python ${{ github.workspace }}/qita.py
- name: 提交更改
run: |
git config --local user.email "fwu@126.com"
git config --local user.name "zzmaze"
git add .
git commit *.txt -m "Add generated file"
git commit *.m3u -m "Add generated file"
#git pull --rebase
git push -f
0