style and docs: run devtools::document() and styler::style_pkg() #30
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
# updates exiting bookdown for a repository | |
# deploys to a branch gh-pages in the same repository | |
name: call-update-bookdown | |
# on specifies the build triggers. See more info at https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows | |
on: | |
# this workflow runs on pushes to main | |
push: | |
branches: main | |
workflow_dispatch: | |
jobs: | |
call-workflow: | |
uses: nmfs-fish-tools/ghactions4r/.github/workflows/build-deploy-bookdown.yml@main | |
with: | |
bookdown_input: 'inst/bookdown' | |
bookdown_output_dir: '../../docs/manual' | |
deployment_dir: 'docs' |