Skip to content

increase font size of valuebox text #20

increase font size of valuebox text

increase font size of valuebox text #20

Workflow file for this run

on:
push:
branches:
- main
- master
name: build
jobs:
render:
name: build
runs-on: ubuntu-20.04
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: |
any::tidyverse
any::plotly
any::mapview
any::flexdashboard
any::extrafont
any::leaflet
- name: Render index
run: Rscript -e 'rmarkdown::render("index.Rmd")'
- name: Commit results
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
git add -A
git commit -m 'Re-build Rmarkdown files' || echo "No changes to commit"
git push origin || echo "No changes to commit"