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

ptuomola 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 ab6323e  Reordering actions in fineract.dev workflow
ab6323e is described below

commit ab6323e4748f8bab0cd686bcbd63c816a2d65a7e
Author: Petri Tuomola <[email protected]>
AuthorDate: Mon Jan 3 21:59:17 2022 +0800

    Reordering actions in fineract.dev workflow
---
 .github/workflows/fineract.dev.yaml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

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

Reply via email to