-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 924 Bytes
/
main.yml
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: Main
on:
schedule:
- cron: '5 1 * * *'
permissions: write-all
jobs:
fetch_api:
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.12"
- name: Install dependencies
run: pip install requests
- name: Fetch
run: python leaderboards.py
env:
ACCOUNT_ID: ${{ secrets.ACCOUNT_ID }}
BASIC_AUTH: ${{ secrets.BASIC_AUTH }}
DEVICE_ID: ${{ secrets.DEVICE_ID }}
SECRET: ${{ secrets.SECRET }}
- name: Commit and push artifact
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add .
git commit -m "Update Leaderboards"
git push