Skip to content

Daily Update

Daily Update #444

Workflow file for this run

name: Daily Update
on:
schedule:
- cron: '30 9,21 * * *'
workflow_dispatch:
分支:
- main
jobs:
run_script:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install requests
pip install aiohttp
pip3 install validators
- name: Run Python main script
run: python main.py
- name: Run Python litemain script
run: python litemain.py
- name: Commit and push if changed
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add -A
if ! git diff --staged --quiet; then
git commit -m "Auto-update live files"
git push
fi
env:
TZ: Asia/Shanghai