Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #326

Merged
merged 7 commits into from
Feb 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,19 @@ jobs:
run: |
echo "Status: *release* $GITHUB_REF_NAME" > release.md

- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v2
- name: setup-micromamba
- uses: mamba-org/setup-micromamba@v2
with:
miniforge-variant: Mambaforge
miniforge-version: latest
activate-environment: bdns
use-mamba: true

- name: Create environment
run: mamba env update -n bdns -f environment.yml

environment-file: environment.yml
init-shell: >-
bash
cache-environment: true
post-cleanup: 'all'
- name: Install tinytex
shell: bash -l {0}
shell: micromamba-shell {0}
run: quarto install tinytex

- name: Build docs
shell: bash -l {0}
shell: micromamba-shell {0}
run: quarto render .

- name: Push docs to gh-pages
Expand Down