Skip to content

Commit a8d62b6

Browse files
GitHub Action Improvement
- Use JDK 21 to avoid build warnings - Don't compress a ZIP archive
1 parent 3675ee8 commit a8d62b6

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,16 @@ jobs:
1717
- uses: actions/setup-java@v4
1818
with:
1919
distribution: temurin
20-
java-version: 17
20+
java-version: 21
2121

2222
- name: Setup Gradle
2323
uses: gradle/actions/setup-gradle@v4
2424

2525
- name: Execute Gradle build
26-
run: ./gradlew buildPlugin --no-daemon
26+
run: ./gradlew buildPlugin
2727

2828
- uses: actions/upload-artifact@v4
2929
with:
30-
name: ethersync-plugin.zip
31-
path: build/distributions/ethersync-*.zip
30+
name: ethersync-plugin
31+
path: build/distributions/ethersync-*.zip
32+
compression-level: 0

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# IntelliJ plugin
22

3-
Make sure you have at least a JDK 17 installed on your machine and that the
3+
Make sure you have at least a JDK 21 installed on your machine and that the
44
`JAVA_HOME` variable points to the JDK's home directory.
55

66
## How to run locally (without IDE)

0 commit comments

Comments
 (0)