-
-
Notifications
You must be signed in to change notification settings - Fork 227
82 lines (70 loc) · 2.06 KB
/
build-book.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
on:
push:
branches:
- master
pull_request:
branches:
- master
name: build-book
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Setup pandoc
uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: '2.17.1.1'
- name: Install TinyTeX
uses: r-lib/actions/setup-tinytex@v2
env:
# install full prebuilt version
TINYTEX_INSTALLER: TinyTeX
- uses: r-lib/actions/setup-r-dependencies@v2
with:
needs: book
- name: Install missing system dependencies
if: runner.os == 'Linux'
run: sudo apt-get install -y libgtk2.0-dev asymptote
- name: Install phantomjs
run: |
webshot::install_phantomjs()
shell: Rscript {0}
- name: Build Gitbook
if: github.event_name == 'pull_request'
run: make gitbook
- name: Build and Deploy all book
if: github.event_name == 'push'
env:
CONNECT_API_KEY: ${{ secrets.RSC_BOOKDOWN_ORG_TOKEN }}
CONTENT_ID: 7b3dedfa-fd98-45dd-bec4-75d915fb27dd
run: make all
- uses: actions/github-script@v6
if: github.event_name == 'push'
env:
URL: https://bookdown.org/yihui/rmarkdown-cookbook/
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: context.sha,
state: "success",
target_url: "${{ env.URL}}",
description: "Book deployed!",
context: "bookdown.org"
})
- name: Upload book folder for debug
if: failure()
uses: actions/upload-artifact@v3
with:
name: book-dir
path: _book