This is an automated email from the ASF dual-hosted git repository.
vorburger 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 04d3ce6 automatically deploy to https://Fineract.dev [FINERACT-970]
04d3ce6 is described below
commit 04d3ce673c974d92a31c6bb35a7eb560ddfc376d
Author: Michael Vorburger <[email protected]>
AuthorDate: Sat May 16 02:33:11 2020 +0200
automatically deploy to https://Fineract.dev [FINERACT-970]
---
.github/workflows/fineract.dev.yaml | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/.github/workflows/fineract.dev.yaml
b/.github/workflows/fineract.dev.yaml
new file mode 100644
index 0000000..c316b89
--- /dev/null
+++ b/.github/workflows/fineract.dev.yaml
@@ -0,0 +1,31 @@
+# This is the GitHub Action which
+# automatically updates https://www.fineract.dev
+#
+# see https://jira.apache.org/jira/browse/FINERACT-970
+# https://github.com/marketplace/actions/setup-gcloud-environment
+# and
http://blog2.vorburger.ch/2020/05/fineractdev-cicd-from-github-to-google.html
+#
+# Created by Michael Vorburger.ch for Fineract in May 2020.
+#
+
+name: Deploy to https://www.fineract.dev
+
+on:
+ push:
+ branches:
+ - develop
+
+jobs:
+ setup-build-deploy:
+ name: Deploy on Fineract.dev
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
+ with:
+ project_id: ${{ secrets.GOOGLE_PROJECT_ID }}
+ service_account_key: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS}}
+
+ - uses: actions/checkout@v2
+
+ - run: gcloud beta builds triggers run deploy-demo --branch master
--format=none