From dd9d6fde3b6426e108977ed937701b95b2914d2b Mon Sep 17 00:00:00 2001 From: Stephen Mwangi Date: Tue, 5 Sep 2023 12:50:24 +0300 Subject: [PATCH] fix: Add JWT envs to GitHub CI (#18) --- .github/workflows/testing.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 9400261..1155c0a 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -15,6 +15,9 @@ env: DB_PASSWORD: ${{ secrets.DB_PASSWORD }} DB_USER: ${{ secrets.DB_USER }} SERVER_NAME: ${{ secrets.SERVER_NAME }} + JWT_ENABLED: ${{ secrets.JWT_ENABLED }} + JWT_SECRET: ${{ secrets.JWT_SECRET }} + JWT_ALGORITHM: ${{ secrets.JWT_ALGORITHM }} jobs: deploy_to_testing: @@ -81,4 +84,4 @@ jobs: - name: Deploy to Google Kubernetes engine shell: bash - run: cd deploy/ && cat deploy.sh && sh deploy.sh \ No newline at end of file + run: cd deploy/ && cat deploy.sh && sh deploy.sh