Skip to content

更新项目信息 #966

更新项目信息

更新项目信息 #966

name: 更新项目信息
on:
workflow_dispatch:
schedule:
- cron: '0 */12 * * *'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: 迁出代码
uses: actions/checkout@v2
- name: 安装Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: 加载缓存
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/run_in_Actions/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: 设置时区
run: sudo timedatectl set-timezone 'Asia/Shanghai'
- name: 安装依赖
run: |
pip install -r requirements.txt
- name: 执行任务
run: |
python get_projaec_info.py --user ermaozi01 --project free_clash_vpn --save_path mail/project_info.svg --theme dark --token ${{ secrets.TOKEN }}
- name: 提交更改
run: |
git config core.ignorecase false
git config --local user.email "[email protected]"
git config --local user.name "ermaozi01"
git add .
git commit -m "更新项目信息"
git push