From e720e6a43e8b7d13c028cf1c5800e8d81c9f2add Mon Sep 17 00:00:00 2001 From: dong Date: Tue, 22 Oct 2024 03:14:39 +0000 Subject: [PATCH] =?UTF-8?q?18=E7=82=B9=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/iptv.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/iptv.yml b/.github/workflows/iptv.yml index 82b2d7f..f752661 100644 --- a/.github/workflows/iptv.yml +++ b/.github/workflows/iptv.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.x' # 使用Python 3的最新版本 + python-version: '3.10' # 使用Python 3.10版本 - name: Install dependencies run: | @@ -27,10 +27,13 @@ jobs: run: | python main.py + - name: List files + run: ls -la # 列出文件,方便调试 + - name: Commit and push changes run: | git config --local user.email "csszue@gmail.com" - git config --local user.name "GitHub Actions" + git config --local user.name "MemoryCollection" git add *.txt git commit -m "Sync TXT files" || echo "No changes to commit" git push