Fixed bug in favicon location for footer #6
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 | |
paths: | |
- 'DESCRIPTION' | |
- '_pkgdown.yml' | |
- 'NEWS.md' | |
- 'README.md' | |
- 'vignettes/**' | |
workflow_dispatch: | |
name: pkgdown | |
jobs: | |
pkgdown: | |
runs-on: macOS-12 # macOS important Bootstrap/bslib themes | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v3 | |
- 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: | | |
any::pkgdown | |
local::. | |
needs: website | |
- name: Install package | |
run: | | |
R CMD INSTALL --use-vanilla . | |
- name: Deploy to GitHub pages 🚀 | |
run: | | |
git config --local user.name "$GITHUB_ACTOR" | |
git config --local user.email "[email protected]" | |
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' |