From 243f0e3a7b96c53e4a77a341fbc11c89588bef32 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Tue, 29 Oct 2024 13:49:53 +0100 Subject: [PATCH] test: Fix notebook test Add missing dollar sign to github action for testing notebook Test #COG-462 --- .github/workflows/test_notebook.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_notebook.yml b/.github/workflows/test_notebook.yml index 659714d94..ec2a09fa6 100644 --- a/.github/workflows/test_notebook.yml +++ b/.github/workflows/test_notebook.yml @@ -49,8 +49,8 @@ jobs: env: ENV: 'dev' LLM_API_KEY: ${{ secrets.OPENAI_API_KEY }} - GRAPHISTRY_USERNAME: {{ secrets.GRAPHISTRY_USERNAME }} - GRAPHISTRY_PASSWORD: {{ secrets.GRAPHISTRY_PASSWORD }} + GRAPHISTRY_USERNAME: ${{ secrets.GRAPHISTRY_USERNAME }} + GRAPHISTRY_PASSWORD: ${{ secrets.GRAPHISTRY_PASSWORD }} run: jupyter nbconvert \ --to notebook \ --execute notebooks/cognee_demo.ipynb \