-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,28 +9,28 @@ 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 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' # caching pip dependencies | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r scripts/requirements.txt | ||
- 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 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: 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) | ||
- 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) |