Only have 3 document types so far :) #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | |
permissions: | |
contents: write | |
steps: | |
- name: "Check out repository" | |
uses: actions/checkout@v4 | |
# To render using knitr, we need a few more setup steps... | |
# If we didn't want the examples to use `engine: knitr`, we could | |
# skip a few of the setup steps. | |
- name: "Setup pandoc" | |
uses: r-lib/actions/setup-pandoc@v2 | |
- name: "Setup R" | |
uses: r-lib/actions/setup-r@v2 | |
- name: "Setup R dependencies for Quarto's knitr engine" | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
packages: | |
any::knitr | |
any::rmarkdown | |
any::downlit | |
any::xml2 | |
# Back to our regularly scheduled Quarto output | |
- name: "Set up Quarto" | |
uses: quarto-dev/quarto-actions/setup@v2 | |
# 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 sample deployment HTML document template | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
path: "examples/html-document/index.qmd" | |
- name: Render sample deployment website template | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
path: "examples/website" | |
- name: Render sample deployment book template | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
path: "examples/book" | |
# Collect the output into the docs/ directory | |
- name: Copy examples into the docs directory | |
run: | | |
mkdir -p docs/examples && \ | |
cp -rp examples/book/_book docs/examples/book && \ | |
cp -rp examples/website/_site docs/examples/website && \ | |
cp -rp examples/html-document/ docs/examples/html-document | |
# Publish the docs directory onto gh-pages | |
- name: "Render and Publish" | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
path: docs | |
render: false |