Merge pull request #96 from sportsdataverse/AE/handle-NaN-in-lines #170
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
on: | |
push: | |
branches: [main, master] | |
release: | |
types: [published] | |
workflow_dispatch: | |
name: pkgdown | |
jobs: | |
pkgdown: | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
CFBD_API_KEY: ${{ secrets.CFBD_API_KEY }} | |
RSPM: "https://packagemanager.rstudio.com/cran/__linux__/jammy/latest" | |
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: | |
cache-version: 1 | |
extra-packages: | | |
any::pkgdown | |
any::animation | |
any::baseballr | |
any::fastRhockey | |
any::ggimage | |
any::hoopR | |
any::knitr | |
any::oddsapiR | |
any::pacman | |
any::pak | |
any::ragg | |
any::remotes | |
any::rsconnect | |
any::sportyR | |
any::tictoc | |
any::wehoop | |
any::zoo | |
local::. | |
needs: website | |
- name: Install system dependencies | |
run: | | |
pak::pkg_install("hadley/emo") | |
pak::pkg_install("r-lib/pkgapi") | |
pak::pkg_install("UrbanInstitute/urbnmapr") | |
shell: Rscript {0} | |
- name: Deploy package | |
run: | | |
git config --local user.name "$GITHUB_ACTOR" | |
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' |