Update quarto-render.yml #4
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: 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 |