-
Notifications
You must be signed in to change notification settings - Fork 2
80 lines (69 loc) · 2.34 KB
/
build.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
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: main
pull_request:
branches: main
name: build
jobs:
CICD:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Provide Fonts
run: |
mkdir /usr/share/fonts/Atkinson_Hyperlegible
cp -r fonts/ /usr/share/fonts/Atkinson_Hyperlegible/
fc-cache -fv
- name: Check commit message
id: check_commit_message
run: |
COMMIT_MSG=$(git log -1 --pretty=%B)
if [[ "$COMMIT_MSG" != "Render dashboard"* ]]; then
echo "Commit message does not start with 'Render dashboard'."
echo "result=0" >> $GITHUB_ENV
else
echo "result=1" >> $GITHUB_ENV
fi
- uses: quarto-dev/quarto-actions/setup@v2
- run: |
quarto --version
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
- name: Create dashboard documents
if: env.result == '1'
run: |
source("create_qmd.R")
shell: Rscript {0}
- name: Preview - Render and Publish
if: env.result == '1'
uses: quarto-dev/quarto-actions/publish@v2
with:
target: netlify
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
- name: Commit rendered dashboard documents
if: env.result == '1'
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
DATE=$(date +'%Y-%m-%d %H:%M:%S')
git add docs/
git commit --allow-empty -m "Auto-update of the HOAD on $DATE" -a
git push origin ${{ github.head_ref }}
- name: Publish to GitHub Pages
if: env.result == '1' && github.event.pull_request.merged == 'true'
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
render: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}