fix(biopar): updated description to fix visualization #47
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
name: Publish content to GitHub pages | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: publish-docs | |
jobs: | |
build-documentation: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./docs | |
permissions: | |
pages: write | |
contents: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
tinytex: true | |
version: '1.6.31' | |
- name: Render documentation pages | |
run: quarto render --output-dir _build | |
- name: Setup GitHub pages | |
uses: actions/configure-pages@v5 | |
- name: Upload build artifacts | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "docs/_build" | |
- name: Upload build folder | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-folder | |
path: "docs/_build" | |
deploy-documentation-ghpages: | |
runs-on: ubuntu-latest | |
needs: build-documentation | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Deploy to GitHub pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |