Add support for Liberica JDK (#225)

This commit is contained in:
Даниил Разоренов
2021-11-29 12:15:06 +03:00
committed by GitHub
parent ae26cabe43
commit d61af71edf
10 changed files with 2788 additions and 1793 deletions

View File

@ -53,6 +53,18 @@ steps:
- run: java -cp java HelloWorldApp
```
### Liberica
```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'liberica'
java-version: '11'
java-package: jdk # optional (jdk, jre, jdk+fx or jre+fx) - defaults to jdk
- run: java -cp java HelloWorldApp
```
## Installing custom Java package type
```yaml
steps: