Skip to content

Commit 9864feb

Browse files
committed
Install xslt in a different spot
1 parent 6baece5 commit 9864feb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pkgdown.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
run: |
1919
install.packages('remotes')
2020
saveRDS(remotes::dev_package_deps(dependencies = TRUE), "depends.Rds", version = 2)
21-
install.packages('xslt')
2221
shell: Rscript {0}
2322

2423
- name: Cache R packages
@@ -39,5 +38,7 @@ jobs:
3938
run: R CMD INSTALL .
4039

4140
- name: Deploy package
42-
run: pkgdown::deploy_to_branch(new_process = FALSE)
41+
run: |
42+
install.packages('xslt')
43+
pkgdown::deploy_to_branch(new_process = FALSE)
4344
shell: Rscript {0}

0 commit comments

Comments
 (0)