From d7c797d0f3ff48a3066cf26d59f88a4ddb5f0ed0 Mon Sep 17 00:00:00 2001 From: rafaelsideguide <150964962+rafaelsideguide@users.noreply.github.com> Date: Thu, 18 Apr 2024 16:49:31 -0300 Subject: [PATCH] adding env secrets --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 258542e..69699ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,4 +36,9 @@ jobs: run: npx jest -- src/__tests__/e2e/index.test.ts working-directory: ./apps/api env: - REDIS_URL: redis://localhost:6379 \ No newline at end of file + REDIS_URL: redis://localhost:6379 + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} + SUPABASE_URL: ${{ secrets.SUPABASE_URL }} + SUPABASE_SERVICE_TOKEN: ${{ secrets.SUPABASE_SERVICE_TOKEN }} + TEST_API_KEY: ${{ secrets.TEST_API_KEY }} +