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

[fineract] branch develop updated: Reordering actions in fineract.dev workflow

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

commit 1398234c2c2ebe3739d98f5050ee5f748f12f4f9
Author: Petri Tuomola <pe...@tuomola.org>
AuthorDate: Mon Jan 3 21:59:17 2022 +0800

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

diff --git a/.github/workflows/fineract.dev.yaml b/.github/workflows/fineract.dev.yaml
index cc565e4..bedde2e 100644
--- a/.github/workflows/fineract.dev.yaml
+++ b/.github/workflows/fineract.dev.yaml
@@ -22,6 +22,8 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
+      - uses: actions/checkout@v2
+
       - id: 'auth'
         uses: 'google-github-actions/auth@v0'
         with:
@@ -31,8 +33,6 @@ jobs:
         with:
           project_id: ${{ secrets.GOOGLE_PROJECT_ID }}
 
-      - uses: actions/checkout@v2
-
       - run: gcloud components install beta
 
       - run: JOBS=$(gcloud beta builds list --ongoing --format="value[terminator=' '](id)") && [ ! -z "$JOBS" ] && echo "Cancelling $JOBS..." && gcloud builds cancel $JOBS --no-user-output-enabled || true