File tree Expand file tree Collapse file tree 6 files changed +60
-1
lines changed Expand file tree Collapse file tree 6 files changed +60
-1
lines changed Original file line number Diff line number Diff line change 3
3
^README\.Rmd$
4
4
^LICENSE\.md$
5
5
man-roxygen
6
+ ^_pkgdown\.yml$
7
+ ^docs$
8
+ ^pkgdown$
9
+ ^\.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
13
+
14
+ jobs :
15
+ pkgdown :
16
+ runs-on : ubuntu-latest
17
+ # Only restrict concurrency for non-PR jobs
18
+ concurrency :
19
+ group : pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
20
+ env :
21
+ GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
22
+ permissions :
23
+ contents : write
24
+ steps :
25
+ - uses : actions/checkout@v3
26
+
27
+ - uses : r-lib/actions/setup-pandoc@v2
28
+
29
+ - uses : r-lib/actions/setup-r@v2
30
+ with :
31
+ use-public-rspm : true
32
+
33
+ - uses : r-lib/actions/setup-r-dependencies@v2
34
+ with :
35
+ extra-packages : any::pkgdown, local::.
36
+ needs : website
37
+
38
+ - name : Build site
39
+ run : pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
40
+ shell : Rscript {0}
41
+
42
+ - name : Deploy to GitHub pages 🚀
43
+ if : github.event_name != 'pull_request'
44
+
45
+ with :
46
+ clean : false
47
+ branch : gh-pages
48
+ folder : docs
Original file line number Diff line number Diff line change 2
2
.Rhistory
3
3
.RData
4
4
.Ruserdata
5
+ docs
6
+ pkgdown
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Suggests:
34
34
ncmeta,
35
35
stars,
36
36
testthat (>= 3.0.0)
37
- URL: https://github.com/pepijn-devries/CopernicusMarine
37
+ URL: https://github.com/pepijn-devries/CopernicusMarine, https://pepijn-devries.github.io/CopernicusMarine/
38
38
BugReports: https://github.com/pepijn-devries/CopernicusMarine/issues
39
39
License: GPL (>= 3)
40
40
Encoding: UTF-8
Original file line number Diff line number Diff line change
1
+ url : https://pepijn-devries.github.io/CopernicusMarine/
2
+ template :
3
+ bootstrap : 5
4
+
You can’t perform that action at this time.
0 commit comments