mirror of
https://github.com/actions/setup-java.git
synced 2025-04-19 01:16:46 +00:00
Add an error condition for non jdk Microsoft OpenJDK build (#265)
This commit is contained in:
parent
d23aed3c80
commit
f0bb916062
3 changed files with 18 additions and 0 deletions
|
@ -65,6 +65,17 @@ steps:
|
|||
- run: java -cp java HelloWorldApp
|
||||
```
|
||||
|
||||
### Microsoft
|
||||
```yaml
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: 'microsoft'
|
||||
java-version: '11'
|
||||
- run: java -cp java HelloWorldApp
|
||||
```
|
||||
|
||||
## Installing custom Java package type
|
||||
```yaml
|
||||
steps:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue