Skip to content

Commit

Permalink
Create en/latest symlink.
Browse files Browse the repository at this point in the history
Insert a symlink to preserve the old readthedocs paths.
  • Loading branch information
ryanlovett committed Aug 11, 2024
1 parent 76ce2f0 commit 88d9278
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/quarto-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,34 @@ jobs:
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@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 }}

0 comments on commit 88d9278

Please sign in to comment.