Quarto Publish #10
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: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'docs/**' | |
name: Quarto Publish | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
## We could render and publish in one step, however we need to, at | |
## least temporarily, preserve the old en/latest/ paths from the | |
## readthedocs version. So we render, create the link, then publish. | |
#- name: Render and Publish | |
# uses: quarto-dev/quarto-actions/publish@v2 | |
# with: | |
# path: ./docs | |
# target: gh-pages | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Render | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
path: ./docs | |
to: html | |
- name: Create en/latest symlink | |
run: | | |
mkdir ./docs/_site/en | |
cd docs/_site/en | |
ln -s ../../_site latest | |
- name: Publish | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
path: ./docs | |
target: gh-pages | |
render: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |