From 658cbbaf9107446671bf456b4c49c8e524f0d928 Mon Sep 17 00:00:00 2001 From: shabinder Date: Sun, 16 May 2021 02:04:16 +0530 Subject: [PATCH] Workflow Test/Build Additions --- .github/workflows/Release.yml | 8 +++++--- .github/workflows/build-and-publish-kjs.yml | 14 +++++++++++--- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index fcf4c1fa..1fe34b3d 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -1,9 +1,11 @@ name: Release on: - workflow_dispatch: - release: - types: [ created ] + [workflow_dispatch] + +# workflow_dispatch: +# release: +# types: [ created ] jobs: build: diff --git a/.github/workflows/build-and-publish-kjs.yml b/.github/workflows/build-and-publish-kjs.yml index b224caec..354c659c 100644 --- a/.github/workflows/build-and-publish-kjs.yml +++ b/.github/workflows/build-and-publish-kjs.yml @@ -10,12 +10,20 @@ jobs: - name: Setup Java uses: actions/setup-java@v1 with: - java-version: 1.8 + java-version: 15 # Check out current repository - name: Fetch Sources uses: actions/checkout@v2.3.1 - # Build application - - name: Test and Build + # Build Android application + - name: Android App + run: ./gradlew :android:build + + # Build Desktop application + - name: Desktop App + run: ./gradlew :desktop:build + + # Build Web application + - name: Web App run: ./gradlew :web-app:build