-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 1.01 KB
/
_bike-counter.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on:
push:
branches: main
schedule:
- cron: '10 * * * *'
jobs:
update-report:
runs-on: ubuntu-latest
steps:
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install packages
uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: |
any::tidyverse
any::reactable
any::reactablefmtr
any::leaflet
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Check out repository
uses: actions/checkout@v3
- name: Render
uses: quarto-dev/quarto-actions/render@v2
with:
path: index.qmd
- name: Commit results
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
git add index.html
git commit -m 'Cycling count data updated' || echo "No changes to commit"
git push origin || echo "No changes to commit"