-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (44 loc) · 1.14 KB
/
pkgdown.yml
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
---
name: Pkgdown 📖
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
push:
branches:
- main
workflow_call:
concurrency:
group: pkgdown-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
pkgdown:
name: ${{ vars.CI_IMAGE }}
runs-on: ubuntu-latest
container:
image: ${{ vars.CI_IMAGE }}
steps:
- name: Checkout project ⬇️
uses: actions/checkout@v4
- name: Install package dependencies 📄
uses: boehringer-ingelheim/dv.templates/.github/actions/dependencies@main
- name: Build site 🔧
run: pkgdown::build_site()
shell: Rscript {0}
- name: Checkout gh-pages branch ⬇️
uses: actions/checkout@v4
with:
path: gh-pages
ref: gh-pages
- name: Deploy to GitHub pages 📰
if: (github.event_name == 'push') && (github.ref_name == 'main')
uses: JamesIves/[email protected]
with:
clean: true
branch: gh-pages
folder: docs