Skip to content

Daily Update Analytics and Top Posts #21

Daily Update Analytics and Top Posts

Daily Update Analytics and Top Posts #21

name: Daily Update Analytics and Top Posts
on:
schedule:
- cron: '0 0 * * *' # This runs at 12:00 AM UTC every day
workflow_dispatch:
jobs:
update-data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies

Check failure on line 16 in .github/workflows/daily-view-count-update.yaml

View workflow run for this annotation

GitHub Actions / Daily Update Analytics and Top Posts

Invalid workflow file

The workflow is not valid. .github/workflows/daily-view-count-update.yaml (Line: 16, Col: 9): Unexpected value 'cache'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r scripts/requirements.txt
- name: Run Google Analytics data retrieval script
run: python scripts/fetch_google_analytics_view_counts.py
env:
GOOGLE_APPLICATION_CREDENTIALS_JSON: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_JSON }}
- name: Run update top posts script
run: python scripts/update_top_posts.py # Replace with your actual script name
- name: Commit and push if changed
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add -A
git diff --quiet && git diff --staged --quiet || (git commit -m "Auto-update analytics and top posts" && git push)