This commit is contained in:
NianBroken
2024-02-13 13:52:19 +08:00 Unverified
parent 491f475971
commit d73e60d79d
+4 -26
View File
@@ -2,7 +2,7 @@ name: CheckScores
on: on:
schedule: schedule:
- cron: "*/30 * * * *" # 每30分钟执行一次123 - cron: "*/30 * * * *" # 每30分钟执行一次
workflow_dispatch: workflow_dispatch:
inputs: inputs:
force_push_message: force_push_message:
@@ -16,62 +16,46 @@ on:
jobs: jobs:
CheckScores: CheckScores:
# 在最新版的Ubuntu系统上运行
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# 使用GitHub Actions提供的动作来检出代码库
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@main uses: actions/checkout@main
# 配置Python环境
- name: Set up Python - name: Set up Python
uses: actions/setup-python@main uses: actions/setup-python@main
with: with:
python-version: "*" python-version: "*"
# 使用pip安装项目的依赖项
- name: Install dependencies - name: Install dependencies
run: | run: |
pip install requests rsa pyquery pip install requests rsa pyquery
# 配置Git用户信息
- name: Configure Git - name: Configure Git
run: | run: |
git config --global user.email "actions@github.com" git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions" git config --global user.name "GitHub Actions"
# 添加上游仓库作为远程仓库,并获取上游仓库的main分支的最新更改
- name: Fetch upstream changes - name: Fetch upstream changes
run: | run: |
git remote add upstream https://github.com/NianBroken/ZFCheckScores.git git remote add upstream https://github.com/NianBroken/ZFCheckScores.git
git fetch upstream main git fetch upstream main
# 复制上游分支的`.github/workflows/main.yml`文件到当前仓库并覆盖
- name: Copy upstream workflow file
run: |
cp -f upstream/main/.github/workflows/main.yml .github/workflows/main.yml
# 创建一个备份目录,并将当前目录中的所有.txt文件复制到备份目录
- name: Backup local .txt files - name: Backup local .txt files
run: | run: |
mkdir -p backup mkdir -p backup
cp -r *.txt backup/ || echo "No .txt files to backup" cp -r *.txt backup/ || echo "No .txt files to backup"
# 将上游main分支的更改强制推送到当前main分支 - name: Update workflow file from upstream
- name: Force push changes from upstream to current main branch
run: | run: |
git checkout main wget -O new_workflow.yml https://raw.githubusercontent.com/NianBroken/ZFCheckScores/main/.github/workflows/main.yml
git reset --hard upstream/main mv new_workflow.yml .github/workflows/main.yml || echo "Failed to update workflow file"
git push origin main --force
# 从备份目录将.txt文件还原到当前目录,然后删除备份目录
- name: Restore local .txt files and delete backup - name: Restore local .txt files and delete backup
run: | run: |
cp -r backup/*.txt . || echo "No .txt files to restore" cp -r backup/*.txt . || echo "No .txt files to restore"
rm -rf backup rm -rf backup
# 运行主程序main.py
- name: Run main.py - name: Run main.py
env: env:
FORCE_PUSH_MESSAGE: ${{ github.event.inputs.force_push_message }} FORCE_PUSH_MESSAGE: ${{ github.event.inputs.force_push_message }}
@@ -95,7 +79,6 @@ jobs:
export BEIJING_TIME="$(TZ='Asia/Shanghai' date +'%Y-%m-%d %H:%M:%S:%3N')" export BEIJING_TIME="$(TZ='Asia/Shanghai' date +'%Y-%m-%d %H:%M:%S:%3N')"
python main.py python main.py
echo "------" echo "------"
# 判断环境变量是否为空
if [ -z "$URL" ]; then if [ -z "$URL" ]; then
echo "URL secret is empty!" echo "URL secret is empty!"
fi fi
@@ -108,7 +91,6 @@ jobs:
if [ -z "$TOKEN" ]; then if [ -z "$TOKEN" ]; then
echo "TOKEN secret is empty!" echo "TOKEN secret is empty!"
fi fi
# 方便通过截图快速定位到用户
echo "Force Push Message: $FORCE_PUSH_MESSAGE" echo "Force Push Message: $FORCE_PUSH_MESSAGE"
echo "Triggered By: ${{ github.event_name }}" echo "Triggered By: ${{ github.event_name }}"
echo "Run By: ${{ github.triggering_actor }}" echo "Run By: ${{ github.triggering_actor }}"
@@ -119,22 +101,18 @@ jobs:
echo "Workflow ID: ${{ github.run_id }}" echo "Workflow ID: ${{ github.run_id }}"
echo "Beijing Time: $BEIJING_TIME" | tee time.txt echo "Beijing Time: $BEIJING_TIME" | tee time.txt
# 删除__pycache__文件夹
- name: Delete __pycache__ folder - name: Delete __pycache__ folder
run: | run: |
rm -rf __pycache__ rm -rf __pycache__
# 将当前目录中的所有更改添加到Git的暂存区
- name: Add changes - name: Add changes
run: | run: |
git add . git add .
# 提交更改到Git仓库
- name: Commit changes - name: Commit changes
run: | run: |
git commit -m "Update from GitHub Actions" || true git commit -m "Update from GitHub Actions" || true
# 将更改强制推送到main分支
- name: Force push changes to main branch - name: Force push changes to main branch
run: | run: |
git push origin main --force git push origin main --force