We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c42ca commit a8bea58Copy full SHA for a8bea58
.github/workflows/pkgup.yaml
@@ -42,6 +42,7 @@ jobs:
42
- name: website
43
if: github.ref == 'refs/heads/litedown'
44
run: |
45
+ R CMD INSTALL $(ls -1t pkgup_*.tar.gz | head -n 1) ## seems to be required
46
Rscript -e 'litedown::fuse_site("docs")'
47
mkdir -p public
48
find docs -name '*.html' -print0 | cpio -pvdmB --null public
docs/index.Rmd
@@ -5,8 +5,6 @@ site:
5
---
6
7
```{r, echo=FALSE}
8
-install.packages("pkgup_*.tar.gz", repos=NULL, quiet=FALSE) ## seems to be required
9
-getwd()
10
litedown::pkg_desc()
11
```
12
0 commit comments