Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
./gradlew build --info --warning-mode=summary -PskipFlakyTests=true -PjavaVersion=${{ matrix.java }}

- name: Archive executable JAR
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ env.DEFAULT_JAVA == matrix.java && env.DEFAULT_OS == matrix.os }}
with:
name: executable-jar
Expand All @@ -64,7 +64,7 @@ jobs:
if-no-files-found: error

- name: Archive test reports for ${{ matrix.os }} using Java ${{ matrix.java }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ always() }}
with:
name: test-reports-${{ matrix.os }}-java-${{ matrix.java }}
Expand All @@ -86,7 +86,7 @@ jobs:
./gradlew jpackage --info --warning-mode=summary -PjavaVersion=${{ matrix.java }}

- name: Archive native package for ${{ runner.os }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ env.DEFAULT_JAVA == matrix.java }}
with:
name: packages-${{ runner.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: ./gradlew build jpackage --info --warning-mode all -PskipFlakyTests=true

- name: Archive executable JAR
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ env.DEFAULT_OS == matrix.os }}
with:
name: executable-jar
Expand All @@ -56,7 +56,7 @@ jobs:
product/build/libs-checksums/*

- name: Archive native package for ${{ runner.os }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: native-package-${{ runner.os }}
retention-days: 5
Expand Down
Loading