Update SNS conuts cache #158
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
name: Update SNS conuts cache | |
on: | |
schedule: | |
# 9:00 JST | |
- cron: '0 0 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
env: | |
TZ: Asia/Tokyo | |
FB_TOKEN: ${{ secrets.FB_TOKEN }} | |
GOOGLE_APPLICATION_CREDENTIALS: ${{ github.workspace }}/google_application_credentials.json | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Go tools | |
run: | | |
mkdir ~/bin | |
export GOBIN=~/bin | |
go install github.com/ma91n/snssharecount/cmd/snssharecount@latest | |
go install github.com/ma91n/snssharecount/cmd/ga@latest | |
go install github.com/ma91n/snssharecount/cmd/pv@latest | |
- name: Update SNS counts | |
run: | | |
echo '${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_JSON }}' > google_application_credentials.json | |
~/bin/snssharecount > temp.json | |
mv temp.json sns_count_cache.json | |
~/bin/ga > ga_cache.json | |
~/bin/pv > ga4_pv.json | |
- name: Commit and push | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add sns_count_cache.json ga_cache.json ga4_pv.json | |
git commit -m "Update SNS counts cache" | |
git push origin HEAD | |
- name: Trigger Deploy Workflow | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
github.rest.repos.createDispatchEvent({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
event_type: "deploy-trigger", | |
}); |