-
Notifications
You must be signed in to change notification settings - Fork 25
42 lines (35 loc) · 1.27 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
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
#push:
# # To publish docs from your branch: list the branch name here instead of main.
# branches: [main]
#pull_request:
# # To publish docs from your branch: list the branch name here instead of main.
# branches: [main]
release:
types: [published]
schedule:
- cron: "42 9 * * *"
workflow_dispatch:
name: pkgdown
jobs:
pkgdown:
runs-on: ubuntu-24.04
# This is GitHub Actions magic -- there are no secrets we as package owners need to set up or manage
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
# Run this daily to surface errors as tracked at
# https://github.com/single-cell-data/TileDB-SOMA/issues/2052
- name: Install dependencies
run: ./apis/r/tools/install-pkgdown-dependencies.sh
# Run this on releases, or on workflow dispatch
- name: Deploy package
if: github.event_name != 'schedule'
run: ./apis/r/tools/deploy-pkgdown.sh