From 22b1c24c35f930050796308bc13c9c179cd8d238 Mon Sep 17 00:00:00 2001 From: sidhdhi canopas Date: Mon, 30 Sep 2024 10:10:57 +0530 Subject: [PATCH] cmp content --- .github/workflows/function_deploy.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/function_deploy.yml b/.github/workflows/function_deploy.yml index 4cbbbfbc..fc65377a 100644 --- a/.github/workflows/function_deploy.yml +++ b/.github/workflows/function_deploy.yml @@ -47,11 +47,15 @@ jobs: echo $GOOGLE_APPLICATION_CREDENTIALS | base64 --decode > functions/google-application-credentials.json echo $FIREBASE_JSON_BASE64 | base64 --decode > firebase.json - - name: Deploy Firebase functions + - name: Print Contents run: | cd khelo - export GOOGLE_APPLICATION_CREDENTIALS=$(pwd)/functions/google-application-credentials.json - firebase deploy --only functions --non-interactive --debug + echo functions/google-application-credentials.json + + - name: Deploy Firebase functions + run: | + cd khelo/functions + firebase deploy --only functions --debug - name: Remove credentials file if: success() || failure()