[188559300]: more pkgdown debugging #131
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
on: | |
push: | |
branches: | |
- main | |
- master | |
- default-new-ds-project-188559300 | |
name: pkgdown | |
jobs: | |
pkgdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.TA_DA_ACCESS }} | |
- name: Configure git | |
run: | |
git config --global user.email "[email protected]" | |
git config --global user.name "rcrunch GitHub Action" | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: release | |
http-user-agent: ${{ matrix.config.http-user-agent }} | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::pkgdown | |
- name: Decompress cubes | |
run: Rscript 'dev-misc/compress-mocks.R' | |
- name: Install package | |
run: R CMD INSTALL . | |
- name: Run pkgdown | |
run: | | |
bash 'pkgdown.sh' |