IPTV #11
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: IPTV | |
on: | |
schedule: | |
- cron: '0 */24 * * *' #这里更改自动运行的时间,没这两行的话只能手动运行 | |
workflow_dispatch: | |
分支: | |
- main | |
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 iptv | |
run: python ${{ github.workspace }}/iptvzby.py #这里更改要运行的py | |
- name: 提交更改 | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "mlvjfchen" | |
git add . | |
git commit *.txt -m "Add generated file" | |
# git commit *.m3u -m "Add generated file" | |
#git pull --rebase | |
git push -f |