Skip to content

Update decision_functions.R: Missed FG yard position #16

Update decision_functions.R: Missed FG yard position

Update decision_functions.R: Missed FG yard position #16

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches:
- main
- master
workflow_dispatch:
name: pkgdown
jobs:
pkgdown:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
config:
- {os: 'ubuntu-latest', r: 'release'}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
CFBD_API_KEY: ${{ secrets.CFBD_API_KEY }}
R_KEEP_PKG_SOURCE: yes
RSPM: "https://packagemanager.rstudio.com/cran/__linux__/jammy/latest"
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- 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::cfbfastR
any::hoopR
any::fastRhockey
any::ggimage
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: Deploy package
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'