Skip to content
This repository was archived by the owner on Jan 9, 2024. It is now read-only.

Commit 64fcf38

Browse files
authored
feat: upgrade jdk version to 18 (#311)
* feat: upgrade jdk version to 18 * feat: update action name * feat: update issue template
1 parent ef45751 commit 64fcf38

File tree

8 files changed

+53
-59
lines changed

8 files changed

+53
-59
lines changed

.github/ISSUE_TEMPLATE/bug-report-----.md

-23
This file was deleted.

.github/ISSUE_TEMPLATE/feature-request-----.md

-17
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: 'Create Issue From Template'
3+
about: 'PrettyZoo application ISSUE report'
4+
title: 'Issue title'
5+
assignees: 'vran-dev'
6+
---
7+
8+
## Info
9+
10+
* Version: `latest`
11+
* App distribution: `prettyzoo-win.msi`
12+
* OS version: `win11`
13+
14+
15+
## Description
16+
17+
> details what happened and expected
18+
19+
20+
## Logs
21+
22+
> you can find log in {user.home}/.prettyZoo/log

.github/ISSUE_TEMPLATE/question-----.md

-12
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: 'Create Issue From Template'
3+
about: 'PrettyZoo application ISSUE report'
4+
title: 'Issue title'
5+
assignees: 'vran-dev'
6+
---
7+
8+
## 基本信息
9+
10+
* 版本号: `latest`
11+
* 安装类型: `prettyzoo-win.msi`
12+
* 系统版本: `win11`
13+
* 当前系统是否安装有 JDK/JRE:`no`
14+
15+
## 描述
16+
17+
> 描述具体发生了什么和期望的结果,可选
18+
19+
20+
## 日志
21+
22+
> 你可以在 `{user.home}/.prettyZoo/log` 目录下找到日志

.github/workflows/release.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ jobs:
1616
os: [ windows-latest, macos-latest, ubuntu-latest ]
1717

1818
steps:
19-
- uses: actions/checkout@v2
20-
- name: Set up JDK 17
21-
uses: actions/setup-java@v1
19+
- uses: actions/checkout@v3
20+
- name: Set Up Java18
21+
uses: actions/setup-java@v3
2222
with:
23-
java-version: '17'
23+
distribution: 'zulu'
24+
java-version: '18'
2425
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
2526
settings-path: ${{ github.workspace }} # location for the settings.xml file
2627

@@ -33,6 +34,7 @@ jobs:
3334
with:
3435
files: |
3536
app/build/jpackage/*.msi
37+
app/build/jpackage/*.zip
3638
draft: true
3739
fail_on_unmatched_files: true
3840
env:

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'org.openjfx.javafxplugin' version '0.0.10'
3-
id 'org.beryx.jlink' version '2.25.0'
3+
id 'org.beryx.jlink' version '2.26.0'
44
id 'antlr'
55
id 'idea'
66
id 'application'
@@ -9,7 +9,7 @@ plugins {
99
checkstyleMain.source = "src/main/java"
1010

1111
javafx {
12-
version = "17.0.1"
12+
version = "18.0.2"
1313
modules = ['javafx.controls', 'javafx.fxml', 'javafx.graphics', 'javafx.base']
1414
}
1515

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)