Skip to content

Commit

Permalink
Changed the build action to support the project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
MehradN committed Jul 1, 2023
1 parent 7eea590 commit f8f6f24
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8f6f24

Please sign in to comment.