Skip to content

Create heartbeat.yaml #39

Create heartbeat.yaml

Create heartbeat.yaml #39

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
# tags: ['*']
workflow_dispatch:
name: pkgdown
jobs:
pkgdown:
if: "!contains(github.event.head_commit.message, 'skip pkgdown')"
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
ropensci/piggyback
pkgdown
arrow
readr
nflverse/nflreadr
- name: Deploy package
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "[email protected]"
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'