Skip to content

Commit a6b9a38

Browse files
committed
fix build
1 parent e6b41e6 commit a6b9a38

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/helpers/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ RUN apt-get update && apt-get install -y curl wget zip
44

55
RUN ARCH=$(dpkg --print-architecture) && \
66
if [ "$ARCH" = "amd64" ]; then \
7-
wget -O jre.zip https://builds.openlogic.com/downloadJDK/openlogic-openjdk/21.0.8+9/openlogic-openjdk-21.0.8+9-linux-x64.tar.gz; \
7+
wget -O jre.zip https://builds.openlogic.com/downloadJDK/openlogic-openjdk/21.0.8+9/openlogic-openjdk-21.0.8+9-linux-x64.zip; \
88
elif [ "$ARCH" = "arm64" ]; then \
99
wget -O jre.zip https://builds.openlogic.com/downloadJDK/openlogic-openjdk/21.0.8+9/openlogic-openjdk-21.0.8+9-mac-x64.zip; \
1010
else \
1111
echo "Unsupported architecture: $ARCH" && exit 1; \
1212
fi
1313
RUN unzip jre.zip
14-
RUN mv jre-21.0.7 jre || mv jre-21.0.7-linux-aarch/jre-21.0.7 jre
14+
RUN mv jdk-openlogic-openjdk-21.0.8+9-linux-x64 jre || mv openlogic-openjdk-21.0.8+9-mac-x64/jdk-21.0.8.jdk jre
1515
ADD ./cli ./cli
1616
ADD ./core ./core
1717
ADD ./plugin-interface ./plugin-interface

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "9.1.0"
5+
version = "9.2.0"
66

77
repositories {
88
mavenCentral()

0 commit comments

Comments
 (0)