Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore rjournal from examples in website #540

Merged
merged 3 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-tinytex@v1
- uses: r-lib/actions/setup-tinytex@v2
env:
# install full prebuilt version
TINYTEX_INSTALLER: TinyTeX

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
Expand All @@ -41,16 +42,17 @@ jobs:
- name: Install system dependencies
if: runner.os == 'Linux'
run: sudo apt-get install -y ghostscript

- name: Cache some pkgdown assets
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
vignettes/articles/resources/*.gif
vignettes/articles/resources/*.pdf
vignettes/articles/cache/*.rds
key: ${{ hashFiles('vignettes/articles/_child_examples.Rmd') }}-2-${{ github.sha }}
key: ${{ hashFiles('vignettes/articles/_child_examples.Rmd') }}-1-${{ github.sha }}
restore-keys: |
${{ hashFiles('vignettes/articles/_child_examples.Rmd') }}-2-
${{ hashFiles('vignettes/articles/_child_examples.Rmd') }}-1-

- name: Build pkgdown site
run: pkgdown::build_site(new_process = FALSE, install = FALSE)
Expand Down
Loading