From 5696cd3b66336fdf457a3fc3610fb86bda709a10 Mon Sep 17 00:00:00 2001 From: nnayk <79224511+nnayk@users.noreply.github.com> Date: Tue, 5 Dec 2023 22:51:52 -0800 Subject: [PATCH] Fix mongo uri github actions issue (need to add the secret still but don't have the permissions to do so) --- .github/workflows/backend-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 9e5682d..bf41d90 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -50,6 +50,7 @@ jobs: test: runs-on: ubuntu-latest needs: build + env: MONGO_URI = ${{ secrets.MONGO_URI }} defaults: run: working-directory: Backend