Compare commits

...

2 Commits

Author SHA1 Message Date
Gerrit Grunwald
86d1f5cec1
Merge d3af3ec854 into 1d018f9b8b 2026-03-13 11:29:43 +00:00
Gerrit Grunwald
d3af3ec854
Added the option jdk+crac
Because with Azul Zulu one can also use jdk+crac in combination with version 17 and 21, this was added to the README.md and advanced-usage.md.
This PR contains no code changes, just documentation.
2024-02-02 16:59:47 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ For information about the latest releases, recent updates, and newly supported d
- `distribution`: _(required)_ Java [distribution](#supported-distributions).
- `java-package`: The packaging variant of the chosen distribution. Possible values: `jdk`, `jre`, `jdk+fx`, `jre+fx`. Default value: `jdk`.
- `java-package`: The packaging variant of the chosen distribution. Possible values: `jdk`, `jre`, `jdk+fx`, `jre+fx`, `jdk+crac`. Default value: `jdk`.
- `architecture`: The target architecture of the package. Possible values: `x86`, `x64`, `armv7`, `aarch64`, `ppc64le`. Default value: Derived from the runner machine.

View File

@ -61,7 +61,7 @@ steps:
with:
distribution: 'zulu'
java-version: '21'
java-package: jdk # optional (jdk, jre, jdk+fx or jre+fx) - defaults to jdk
java-package: jdk # optional (jdk, jre, jdk+fx or jre+fx, jdk+crac) - defaults to jdk
- run: java -cp java HelloWorldApp
```