Uploaded website source

This commit is contained in:
2026-05-05 01:28:40 -05:00
parent c6d589b4f0
commit 832f508120
33 changed files with 65362 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
name: Update TierTagger Data
on:
schedule:
- cron: '0 * * * *' # Every hour
workflow_dispatch: # Allow manual trigger from GitHub UI
jobs:
update-tier-data:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Fetch tier data from eaglertiers.com
run: |
curl -sf --max-time 30 "https://eaglertiers.com/api/players/all" -o tier_data.json || {
echo "Fetch failed, keeping existing file"
exit 0
}
- name: Commit if changed
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add tier_data.json
git diff --staged --quiet || git commit -m "chore: update tier data [skip ci]"
git push