Stats #375
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: Stats | |
on: | |
schedule: | |
- cron: "0 11 * * *" | |
workflow_dispatch: | |
jobs: | |
update_wiki_stats: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout Wiki | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository }}.wiki | |
path: ./playlet.wiki | |
- name: Configure repo | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "github-action wiki updater" | |
working-directory: ./playlet.wiki | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Download attachements | |
run: node tools/download-stats.js | |
env: | |
EMAIL: ${{ secrets.EMAIL }} | |
EMAIL_APP_PASSWORD: ${{ secrets.EMAIL_APP_PASSWORD }} | |
- name: Update wiki | |
run: git add "." && git commit -m "Update stats" --no-verify && git push || true | |
working-directory: ./playlet.wiki |