From f8f6f24210c90d3664e7d355b4ea233d1aff8861 Mon Sep 17 00:00:00 2001 From: Mehrad Nayyeri Date: Sat, 1 Jul 2023 18:11:47 +0330 Subject: [PATCH] Changed the build action to support the project structure --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ca3795..426e68b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,8 +30,10 @@ jobs: - name: make gradle wrapper executable if: ${{ runner.os != 'Windows' }} run: chmod +x ./gradlew - - name: build - run: ./gradlew build + - name: build client + run: ./gradlew client:build + - name: build server + run: ./gradlew server:build - name: capture build artifacts if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS uses: actions/upload-artifact@v3