forked from omstrumpf/tts-mtg-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1.03 KB
/
Copy pathupdate-boosters.yaml
File metadata and controls
39 lines (32 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Update Booster Files
on:
schedule:
- cron: '0 3 * * *' # Every day at 03:00 UTC
workflow_dispatch: # Manual trigger option
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
persist-credentials: true # Required to push
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run booster split script
run: python booster_splitter.py
- name: Commit and push changes
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add booster/ sealed_basic_data.json booster_index.json
if git diff --cached --quiet; then
echo "No changes to commit"
else
git commit -m "Daily booster data update"
git push
fi