-
Notifications
You must be signed in to change notification settings - Fork 564
60 lines (47 loc) · 1.39 KB
/
Copy pathbuild-book.yaml
File metadata and controls
60 lines (47 loc) · 1.39 KB
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
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
schedule:
# run every day at 11 PM
- cron: "0 23 * * *"
name: build-book
env:
isExtPR: ${{ github.event.pull_request.head.repo.fork == true }}
jobs:
build:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
- name: Build book
run: Rscript -e 'bookdown::render_book("index.Rmd", quiet = TRUE)'
- name: Upload website artifact
if: ${{ github.ref == 'refs/heads/main' && github.event.pull_request.head.repo.fork == false }}
uses: actions/upload-pages-artifact@v3
with:
path: "_book"
deploy:
needs: build
if: ${{ github.ref == 'refs/heads/main' && github.event.pull_request.head.repo.fork == false }}
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4