-
-
Notifications
You must be signed in to change notification settings - Fork 7
62 lines (53 loc) · 1.78 KB
/
publish-docs.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
62
on:
push:
branches: [main, master]
release:
types: [published]
workflow_dispatch: {}
name: demo-website
jobs:
demo-website:
runs-on: ubuntu-latest
# Only restrict concurrency for non-PR jobs
concurrency:
group: quarto-build-${{ github.event_name != 'pull_request' || github.run_id }}
permissions:
contents: write
steps:
- name: "Check out repository"
uses: actions/checkout@v4
- name: "Set up Quarto"
uses: quarto-dev/quarto-actions/setup@v2
with:
version: "pre-release"
# Generate the documentation website
- name: Render Documentation website
uses: quarto-dev/quarto-actions/render@v2
with:
path: "docs"
# Attempt to render the nested deployment template Quarto projects
- name: Render README example
uses: quarto-dev/quarto-actions/render@v2
with:
path: "examples/readme/index.qmd"
- name: Render test suite
uses: quarto-dev/quarto-actions/render@v2
with:
path: "tests"
# Collect the output into the staging/ directory
- name: Copy documentation portal & examples into the staging directory
run: |
mkdir -p staging/{examples,tests} && \
cp -rp docs/_site/* staging/ && \
cp -rp tests/_site/* staging/tests/ && \
cp -rp examples/readme/ staging/examples/readme
# Remove symlinks
- name: Delete symlinks
run: |
rm -rf staging/examples/*/_extensions && \
rm -rf staging/tests/_extensions
# Publish the docs directory onto gh-pages
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: staging # The folder the action should deploy.