Skip to content

Commit

Permalink
Create quarto-render.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jules32 authored Oct 12, 2023
1 parent 1e15b26 commit 75c6ed7
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/quarto-render.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Render and deploy quarto files
on:
push:
pull_request:

jobs:
quarto-render-and-deploy:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.8
channels: conda-forge
mamba-version: "*"
activate-environment: quarto-import
environment-file: _import/environment.yml

- name: "Import external notebooks"
working-directory: ./_import
run: |
conda info
pytest
python quarto_import.py -f assets.json
- name: "Install Quarto"
uses: quarto-dev/quarto-actions/install-quarto@main
with:
version: 0.9.105

- name: "Quarto render"
shell: bash
run: |
quarto render --execute-debug
- name: "Deploy to gh-pages"
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site

0 comments on commit 75c6ed7

Please sign in to comment.