File tree Expand file tree Collapse file tree 7 files changed +62
-2
lines changed Expand file tree Collapse file tree 7 files changed +62
-2
lines changed Original file line number Diff line number Diff line change 2
2
^\.Rproj\.user$
3
3
^LICENSE\.md$
4
4
^README\.Rmd$
5
+ ^_pkgdown\.yml$
6
+ ^docs$
7
+ ^pkgdown$
8
+ ^\.github$
Original file line number Diff line number Diff line change
1
+ * .html
Original file line number Diff line number Diff line change
1
+ # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
2
+ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
3
+ on :
4
+ push :
5
+ branches : [main, master]
6
+ pull_request :
7
+ branches : [main, master]
8
+ release :
9
+ types : [published]
10
+ workflow_dispatch :
11
+
12
+ name : pkgdown.yaml
13
+
14
+ permissions : read-all
15
+
16
+ jobs :
17
+ pkgdown :
18
+ runs-on : ubuntu-latest
19
+ # Only restrict concurrency for non-PR jobs
20
+ concurrency :
21
+ group : pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
22
+ env :
23
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
24
+ permissions :
25
+ contents : write
26
+ steps :
27
+ - uses : actions/checkout@v4
28
+
29
+ - uses : r-lib/actions/setup-pandoc@v2
30
+
31
+ - uses : r-lib/actions/setup-r@v2
32
+ with :
33
+ use-public-rspm : true
34
+
35
+ - uses : r-lib/actions/setup-r-dependencies@v2
36
+ with :
37
+ extra-packages : any::pkgdown, local::.
38
+ needs : website
39
+
40
+ - name : Build site
41
+ run : pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
42
+ shell : Rscript {0}
43
+
44
+ - name : Deploy to GitHub pages 🚀
45
+ if : github.event_name != 'pull_request'
46
+
47
+ with :
48
+ clean : false
49
+ branch : gh-pages
50
+ folder : docs
Original file line number Diff line number Diff line change 3
3
.RData
4
4
.Ruserdata
5
5
inst /doc
6
+ docs
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ Suggests:
27
27
knitr,
28
28
rmarkdown
29
29
VignetteBuilder: knitr
30
- URL: https://github.com/harphub/harpTobac
30
+ URL: https://github.com/harphub/harpTobac, https://harphub.github.io/harpTobac/
31
31
BugReports: https://github.com/harphub/harpTobac/issues
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ install_tobac <- function(
38
38
)
39
39
)
40
40
41
- reticulate :: py_install(" Numba" , " harp-tobac " )
41
+ reticulate :: py_install(" Numba" , envname )
42
42
43
43
}
44
44
Original file line number Diff line number Diff line change
1
+ url : https://harphub.github.io/harpTobac/
2
+ template :
3
+ bootstrap : 5
4
+
You can’t perform that action at this time.
0 commit comments