From 3de50ba11be1cee966417dc04fe744a5d3372cff Mon Sep 17 00:00:00 2001 From: frxz751113 <156018267+frxz751113@users.noreply.github.com> Date: Fri, 9 Aug 2024 03:22:24 +0800 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fbea903 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,44 @@ +name: 组播采集合并 + +on: + schedule: + - cron: '40 */8 * * *' # 这里更改自动运行的时间#_udp + workflow_dispatch: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.x + + - name: Upgrade pip and install dependencies + run: | + pip install --upgrade pip + pip install selenium requests futures eventlet opencv-python Beautifulsoup4 translate termcolor func_timeout replace input opencc pypinyin pytz tqdm + - name: Run iptv + run: python ${{ github.workspace }}/rtp/iptv_udp.py + #run: python ${{ github.workspace }}/rtp/iptv.py + + # 提交和推送的步骤,不再检查文件是否发生变化 + - name: Commit and push changes + run: | + git config --local user.email "actions@126.com" + git config --local user.name "GitHub Action" + git add . + # 即使没有文件改变,也会提交一个空的提交 + git commit --allow-empty -m "Scheduled workflow run" + git pull --rebase + git push -f + + + +