-
-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (42 loc) · 1.1 KB
/
release.yml
File metadata and controls
55 lines (42 loc) · 1.1 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
name: Deploy Workshop to GitHub Pages
on:
workflow_dispatch:
permissions:
contents: write
id-token: write
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
container:
image: ghcr.io/mcanouil/quarto-codespaces:1.8
defaults:
run:
shell: bash
env:
QUARTO_CHROMIUM: "/usr/bin/google-chrome-stable"
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Restore dependencies
shell: bash
run: |
Rscript -e 'renv::restore()'
uv sync
- name: Render Quarto Project
shell: bash
run: |
export PATH="/home/vscode/.TinyTeX/bin/x86_64-linux:${PATH}"
uv run quarto render
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: "_site"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4