From 0b8c9fd86a5c3d4e0f33d171ed60b3cfbed2d6f2 Mon Sep 17 00:00:00 2001 From: Kevin Schaper Date: Tue, 12 Nov 2024 10:34:36 -0800 Subject: [PATCH] use the venv in the workflow --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b28d16..65f2691 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,12 +26,12 @@ jobs: - name: Activate venv and Install dependencies run: | - source venv/bin/activate + source .venv/bin/activate uv pip install -r requirements.txt - name: Run Jupyter Notebook run: | - source venv/bin/activate + source .venv/bin/activate jupyter nbconvert --to notebook --execute omim_vs_orphanet_comparison.ipynb --output omim_vs_orphanet_comparison_output.ipynb - name: Get Date for Release Tag