Skip to content

Commit

Permalink
change build script for Windows environment
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingDepot committed Apr 3, 2024
1 parent 190263b commit 550777c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
java-version: ${{ matrix.version }}
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build
- name: Build Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: gradlew.bat :codyze-cli:build -x check --parallel -Pversion=0.0.0
- name: Build Default
if: ${{ !startsWith(matrix.os, 'windows') }}
run: ./gradlew :codyze-cli:build -x check --parallel -Pversion=0.0.0
# step-level 'continue-on-error' needed to mask a negative workflow result
# continue-on-error: true

0 comments on commit 550777c

Please sign in to comment.