Cập nhật Bảng xếp hạng #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cập nhật Bảng xếp hạng | |
on: | |
schedule: | |
- cron: "33 */33 * * *" | |
workflow_dispatch: | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.TOKEN }} | |
- name: Thiết lập Python '3.12' | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Cài đặt dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Cập nhật Bảng xếp hạng | |
run: | | |
python3 lichess_bot_leaderboard.py | |
python3 md2html.py | |
# python3 lidraughts_bot_leaderboard.py | |
# python3 lishogi_bot_leaderboard.py | |
# python3 playstrategy_bot_leaderboard.py | |
- name: Cam kết & Đẩy tệp | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add -A | |
git commit -m "Cập nhật bảng xếp hạng" | |
git push --force |