This repository has been archived by the owner on Feb 9, 2024. It is now read-only.
Download latest COVID-19 Status vaccination #26334
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: Download latest COVID-19 Status vaccination | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 58 * * * * | |
jobs: | |
downloadStatus: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js version 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- run: npm install | |
- run: npm run download-today-status | |
- run: | | |
git config user.name midudev | |
git config user.email [email protected] | |
git add . | |
git commit -m "Add report for today" | |
git push |