-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (31 loc) · 1.12 KB
/
scrape_apod_daily.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: Daily APOD scrapper
on:
schedule:
- cron: "0 * * * *" # Run every day at midnight UTC
workflow_dispatch: # Allow manual triggering
jobs:
update-apod:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Set environment variables
run: |
echo "GOOGLE_API_KEY=${{ secrets.GOOGLE_API_KEY }}" >> $GITHUB_ENV
- name: Run APOD scrapper script
run: python backend/utils/scrape_apod.py
- name: Commit and push if changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
git add .
DATE=$(date +'%d-%m-%Y')
git diff --quiet && git diff --staged --quiet || (git commit -m "Add entry $DATE to JSON" && git push)