-
Notifications
You must be signed in to change notification settings - Fork 15
45 lines (35 loc) · 986 Bytes
/
R-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
on:
push:
branches:
- main
- master
pull_request:
branches: [main, master]
name: pkgdown
jobs:
pkgdown:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: release
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::pkgdown
- name: Decompress cubes
run: Rscript 'dev-misc/compress-mocks.R'
- name: Install package
run: R CMD INSTALL .
- name: Run pkgdown
run: |
git config --global user.email "[email protected]"
git config --global user.name "rcrunch GitHub Action"
bash 'pkgdown.sh'