-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (37 loc) · 1.03 KB
/
publish.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
on:
workflow_dispatch:
push:
branches: main
name: Publish Quarto Site
#docs: https://github.com/quarto-dev/quarto-actions/blob/main/examples/quarto-publish-example.yml
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
python-version: ["3.12.3"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-renv@v2
with:
cache-version: 1
- uses: prefix-dev/setup-pixi@v0.8.0
with:
cache: true
run-install: true
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: false
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
QUARTO_PYTHON: ".pixi/envs/default/bin/python3"
QUARTO_R: ".pixi/envs/default/bin/Rscript"