update-docs #151
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: | |
workflow_dispatch: | |
name: update-docs | |
jobs: | |
update-docs: | |
runs-on: macos-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
CURL_SSL_BACKEND: "openssl" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
install-r: true | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: | | |
local::. | |
any::cli | |
any::rcmdcheck | |
any::pkgdown | |
any::reactable | |
any::rnaturalearth | |
any::tidyverse | |
dieghernan/pkgdev | |
ropenspain/rostemplate | |
ropensci/rnaturalearthhires | |
needs: website | |
- name: Update docs | |
run: | | |
pkgdev::update_docs() | |
shell: Rscript {0} | |
- name: Commit results | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add -A | |
git commit -m 'Update docs with pkgdev' || echo "No changes to commit" | |
git push origin || echo "No changes to commit" | |
- uses: r-lib/actions/check-r-package@v2 | |
- name: Deploy package | |
run: | | |
git config --local user.name "github-actions[bot]" | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE, run_dont_run = TRUE)' | |