Skip to content

Commit

Permalink
Fixes #376 - Add windows build to release workflow (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Oct 19, 2024
1 parent 7055a21 commit 65e5a14
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,29 @@ jobs:
run: |
cd server
mvn -B -DskipTests=true -P docker install docker:build docker:push
<<<<<<< Updated upstream
macos:
runs-on: macos-latest
=======
windows:
runs-on: windows-latest
>>>>>>> Stashed changes
steps:
- uses: actions/checkout@v2
- name: Set up Java 21
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 21
<<<<<<< Updated upstream
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.6
- name: Build with Maven
run: mvn -B -DskipTests -DskipITs --ntp -P macos package
=======
- name: Build with Maven
run: mvn -B -DskipTests -DskipITs --ntp -P windows package

>>>>>>> Stashed changes

0 comments on commit 65e5a14

Please sign in to comment.