Skip to content

.github/workflows/covid-dataset-tracker.yml #3585

.github/workflows/covid-dataset-tracker.yml

.github/workflows/covid-dataset-tracker.yml #3585

on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 12 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
echo $PWD
- uses: r-lib/actions/setup-r@v2
with:
r-version: '4.1.2'
- run: |
Rscript covid_dataset_tracker.R
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "generated"
git push