-
Notifications
You must be signed in to change notification settings - Fork 492
47 lines (37 loc) · 1.13 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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