Skip to content

Commit 865c52e

Browse files
committed
followup
1 parent ee195f2 commit 865c52e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/package.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
matrix:
1313
os: [windows-2022, ubuntu-20.04, macos-12]
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
submodules: true
1818
- name: Set up JDK 21.0.2
19-
uses: actions/setup-java@v3
19+
uses: actions/setup-java@v4
2020
with:
2121
distribution: 'temurin'
22-
java-version: '21.0.2'
22+
java-version: '21.0.1'
2323
- name: Show Build Versions
2424
run: ./gradlew -v
2525
- name: Build with Gradle
@@ -31,7 +31,7 @@ jobs:
3131
if: ${{ runner.os == 'Linux' }}
3232
run: ./gradlew packageTarDistribution
3333
- name: Upload Artifacts
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: Sparrow Build - ${{ runner.os }}
3737
path: |
@@ -48,7 +48,7 @@ jobs:
4848
run: for f in build/jpackage/sparrow*; do mv -v "$f" "${f/sparrow/sparrow-server}"; done;
4949
- name: Upload Headless Artifact
5050
if: ${{ runner.os == 'Linux' }}
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: Sparrow Build - ${{ runner.os }} Headless
5454
path: |

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jlink {
214214
uses 'org.eclipse.jetty.websocket.common.RemoteEndpointFactory'
215215
}
216216

217-
options = ['--strip-native-commands', '--strip-java-debug-attributes', '--compress', '2', '--no-header-files', '--no-man-pages', '--ignore-signing-information', '--exclude-files', '**.png', '--exclude-resources', 'glob:/com.sparrowwallet.merged.module/META-INF/*']
217+
options = ['--strip-native-commands', '--strip-java-debug-attributes', '--compress', 'zip-6', '--no-header-files', '--no-man-pages', '--ignore-signing-information', '--exclude-files', '**.png', '--exclude-resources', 'glob:/com.sparrowwallet.merged.module/META-INF/*']
218218
launcher {
219219
name = 'sparrow'
220220
jvmArgs = ["--add-opens=javafx.graphics/com.sun.javafx.css=org.controlsfx.controls",

0 commit comments

Comments
 (0)