-
Notifications
You must be signed in to change notification settings - Fork 12
95 lines (81 loc) · 2.92 KB
/
pkgdown.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
name: pkgdown
on:
push:
branches: [website]
pull_request:
branches: [website]
release:
types: [published]
workflow_dispatch:
jobs:
pkgdown:
runs-on: ubuntu-latest
# Only restrict concurrency for non-PR jobs
concurrency:
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
steps:
- name: Checkout repo for workflow access
uses: actions/checkout@v3
- name: Setup pandoc
uses: r-lib/actions/setup-pandoc@v2
- name: Setup R environment
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Set up dependencies
uses: r-lib/actions/setup-r-dependencies@v2
env:
_R_CHECK_FORCE_SUGGESTS: false
_R_CHECK_RD_XREFS: false
with:
dependencies: '"hard"' # do not use suggested dependencies
extra-packages: any::pkgdown, local::.
needs: website
- name: Set up dependencies (GiottoData)
run: |
new_github_ver_avail <- function(
url, current_ver = NULL
) {
# Return NULL if any warnings or errors due to inaccessible
descfile <- tryCatch(
expr = readLines(url),
warning = function(w) NULL,
error = function(e) NULL
)
# silently return NULL if not found
if (is.null(descfile)) return(invisible())
# parse github version number
gh_ver <- descfile[grep(pattern = "Version:", descfile)]
gh_ver <- gsub(pattern = "Version: ", replacement = "", gh_ver)
# see if GH version is newer
ver_compare <- utils::compareVersion(gh_ver, as.character(current_ver))
# silently return NULL if not newer
if (ver_compare != 1) return(invisible())
# return newer version number
return(gh_ver)
}
new_gdata <- new_github_ver_avail(
url = "https://raw.githubusercontent.com/drieslab/GiottoData/master/DESCRIPTION",
current_ver = packageVersion("GiottoData")
)
suppressWarnings({
if (!is.null(new_gdata))
remotes::install_github('drieslab/GiottoData', build = FALSE)
})
shell: Rscript {0}
- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}
- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/[email protected]
with:
clean: false
branch: gh-pages
folder: docs