File tree 7 files changed +96
-3
lines changed
7 files changed +96
-3
lines changed Original file line number Diff line number Diff line change 4
4
^\.github$
5
5
^LICENSE\.md$
6
6
^README\.Rmd$
7
+ ^_pkgdown\.yml$
8
+ ^docs$
9
+ ^pkgdown$
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
+
8
+ name : R-CMD-check.yaml
9
+
10
+ permissions : read-all
11
+
12
+ jobs :
13
+ R-CMD-check :
14
+ runs-on : ubuntu-latest
15
+ env :
16
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
17
+ R_KEEP_PKG_SOURCE : yes
18
+ steps :
19
+ - uses : actions/checkout@v4
20
+
21
+ - uses : r-lib/actions/setup-r@v2
22
+ with :
23
+ use-public-rspm : true
24
+
25
+ - uses : r-lib/actions/setup-r-dependencies@v2
26
+ with :
27
+ extra-packages : any::rcmdcheck
28
+ needs : check
29
+
30
+ - uses : r-lib/actions/check-r-package@v2
31
+ with :
32
+ upload-snapshots : true
33
+ build_args : ' c("--no-manual","--compact-vignettes=gs+qpdf")'
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
+ release :
8
+ types : [published]
9
+ workflow_dispatch :
10
+
11
+ name : pkgdown.yaml
12
+
13
+ permissions : read-all
14
+
15
+ jobs :
16
+ pkgdown :
17
+ runs-on : ubuntu-latest
18
+ # Only restrict concurrency for non-PR jobs
19
+ concurrency :
20
+ group : pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
21
+ env :
22
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
23
+ permissions :
24
+ contents : write
25
+ steps :
26
+ - uses : actions/checkout@v4
27
+
28
+ - uses : r-lib/actions/setup-pandoc@v2
29
+
30
+ - uses : r-lib/actions/setup-r@v2
31
+ with :
32
+ use-public-rspm : true
33
+
34
+ - uses : r-lib/actions/setup-r-dependencies@v2
35
+ with :
36
+ extra-packages : any::pkgdown, local::.
37
+ needs : website
38
+
39
+ - name : Build site
40
+ run : pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
41
+ shell : Rscript {0}
42
+
43
+ - name : Deploy to GitHub pages 🚀
44
+ if : github.event_name != 'pull_request'
45
+
46
+ with :
47
+ clean : false
48
+ branch : gh-pages
49
+ folder : docs
Original file line number Diff line number Diff line change 3
3
.RData
4
4
.Ruserdata
5
5
.DS_Store
6
+ docs
Original file line number Diff line number Diff line change @@ -11,10 +11,9 @@ Authors@R: c(
11
11
Description: Provides tools to export Shiny applications (R or Python) into
12
12
Docker containers. This package generates appropriate Docker configuration,
13
13
builds the container, and provides utilities to run the containerized application.
14
+ URL: https://r-pkg.thecoatlessprofessor.com/shinydocker/, https://github.com/coatless-rpkg/shinydocker
15
+ BugReports: https://github.com/coatless-rpkg/shinydocker/issues
14
16
License: AGPL (>= 3)
15
- Encoding: UTF-8
16
- Roxygen: list(markdown = TRUE)
17
- RoxygenNote: 7.3.2
18
17
Imports:
19
18
yaml,
20
19
processx,
@@ -23,4 +22,7 @@ Imports:
23
22
cli
24
23
Suggests:
25
24
testthat (>= 3.0.0)
25
+ Encoding: UTF-8
26
+ Roxygen: list(markdown = TRUE)
27
+ RoxygenNote: 7.3.2
26
28
Config/testthat/edition: 3
Original file line number Diff line number Diff line change
1
+ url : ~
2
+ template :
3
+ bootstrap : 5
4
+
You can’t perform that action at this time.
0 commit comments