Allow injection into the document #20
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: 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 demo | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
path: "demos/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 & demos into the staging directory | |
run: | | |
mkdir -p staging/{demos,tests} && \ | |
cp -rp docs/_site/* staging/ && \ | |
cp -rp tests/_site/* staging/tests/ && \ | |
cp -rp demos/readme/ staging/demos/readme | |
# Remove symlinks | |
- name: Delete symlinks | |
run: | | |
rm -rf staging/demos/*/_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. |