Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
bd8a70f732
Merge 8c226db27f into b8ebb8ba1d 2025-03-25 06:43:12 +00:00

View File

@ -215,6 +215,20 @@ The available package types are:
- `jdk+ft` - JBRSDK (FreeType)
- `jre+ft` - JBR (FreeType)
### GraalVM
**NOTE:** Oracle GraalVM is only available for JDK 17 and later.
```yaml
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'graalvm'
java-version: '21'
- run: |
java -cp java HelloWorldApp
native-image -cp java HelloWorldApp
```
## Installing custom Java package type
```yaml