You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by al...@apache.org on 2022/01/03 04:01:27 UTC

[fineract] branch develop updated: Fixing deployment to Fineract.dev

This is an automated email from the ASF dual-hosted git repository.

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 8459870  Fixing deployment to Fineract.dev
8459870 is described below

commit 84598709d128b18c6443c5f952b9bd417ee68f80
Author: Petri Tuomola <pe...@tuomola.org>
AuthorDate: Mon Jan 3 06:21:35 2022 +0800

    Fixing deployment to Fineract.dev
---
 .github/workflows/fineract.dev.yaml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/fineract.dev.yaml b/.github/workflows/fineract.dev.yaml
index d4341c8..cc565e4 100644
--- a/.github/workflows/fineract.dev.yaml
+++ b/.github/workflows/fineract.dev.yaml
@@ -22,10 +22,14 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
-      - uses: google-github-actions/setup-gcloud@master
+      - id: 'auth'
+        uses: 'google-github-actions/auth@v0'
+        with:
+          credentials_json: '${{ secrets.GOOGLE_APPLICATION_CREDENTIALS}}'
+
+      - uses: google-github-actions/setup-gcloud@v0
         with:
           project_id: ${{ secrets.GOOGLE_PROJECT_ID }}
-          service_account_key: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS}}
 
       - uses: actions/checkout@v2