Skip to content

Update workflow file #2

Update workflow file

Update workflow file #2

Workflow file for this run

name: deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install docs dependencies
shell: bash
run: |
pip install -r docs/requirements.txt
- uses: quarto-dev/quarto-actions/setup@v2
with:
version: pre-release
tinytex: true
- name: Render Quarto Project
shell: bash
run: |
quarto render docs/
- uses: actions/upload-pages-artifact@v3
with:
path: "docs/_build"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4