-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (50 loc) · 1.78 KB
/
quarto-pr.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
53
54
55
56
57
58
59
60
61
on:
pull_request:
branches: main
name: quarto pr
permissions: write-all
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: ✅ Check out repository
uses: actions/checkout@v4
- name: 🆀 Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: 🆀 Quarto extensions
shell: bash
run: |
quarto add --no-prompt quarto-ext/fontawesome
quarto add --no-prompt sellorm/quarto-social-embeds
quarto add --no-prompt r-wasm/quarto-drop
quarto add --no-prompt quarto-ext/pointer
- name: 🔧 Install R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
r-version: 'renv'
- name: 🔁 Install system dependencies
run: |
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install libmagick++-dev
sudo apt-get install libglpk-dev
- name: 🔁 Install R Dependencies
uses: r-lib/actions/setup-renv@v2
with:
cache-version: 1
- name: Render Quarto Project
uses: quarto-dev/quarto-actions/render@v2
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: './_site'
production-branch: main
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message:
'Deploy from GHA: ${{ github.event.pull_request.title || github.event.head_commit.message }} (${{ github.sha }})'
# these default to 'true'
enable-commit-comment: false
enable-github-deployment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}