Formula mapping #13
Workflow file for this run
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
# Checks that the pkgdown site builds for a repository. | |
# this assumes pkgdown is already set up. | |
name: call-build-pkgdown | |
# 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 or master or any time a new tag is pushed | |
# it also runs everytime a pull request to main or master is opened. | |
push: | |
branches: [main, master] | |
tags: ['*'] | |
pull_request: | |
branches: [main, master] | |
jobs: | |
call-workflow: | |
uses: nmfs-fish-tools/ghactions4r/.github/workflows/build-pkgdown.yml@main |