File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,8 @@ jobs:
158158 - [Adopt](docs/advanced-usage.md#Adopt)
159159 - [Zulu](docs/advanced-usage.md#Zulu)
160160 - [Liberica](docs/advanced-usage.md#Liberica)
161+ - [Microsoft](docs/advanced-usage.md#Microsoft)
162+ - [Amazon Corretto](docs/advanced-usage.md#Amazon-Corretto)
161163- [Installing custom Java package type](docs/advanced-usage.md#Installing-custom-Java-package-type)
162164- [Installing custom Java architecture](docs/advanced-usage.md#Installing-custom-Java-architecture)
163165- [Installing custom Java distribution from local file](docs/advanced-usage.md#Installing-Java-from-local-file)
Original file line number Diff line number Diff line change 33 - [ Eclipse Temurin] ( #Eclipse-Temurin )
44 - [ Adopt] ( #Adopt )
55 - [ Zulu] ( #Zulu )
6+ - [ Liberica] ( #Liberica )
7+ - [ Microsoft] ( #Microsoft )
8+ - [ Amazon Corretto] ( #Amazon-Corretto )
69- [ Installing custom Java package type] ( #Installing-custom-Java-package-type )
710- [ Installing custom Java architecture] ( #Installing-custom-Java-architecture )
811- [ Installing custom Java distribution from local file] ( #Installing-Java-from-local-file )
@@ -76,6 +79,19 @@ steps:
7679- run: java -cp java HelloWorldApp
7780` ` `
7881
82+ # ## Amazon Corretto
83+ **NOTE:** Amazon Corretto only supports the major version specification.
84+
85+ ` ` ` yaml
86+ steps:
87+ - uses: actions/checkout@v3
88+ - uses: actions/setup-java@v3
89+ with:
90+ distribution: 'corretto'
91+ java-version: '11'
92+ - run: java -cp java HelloWorldApp
93+ ` ` `
94+
7995# # Installing custom Java package type
8096` ` ` yaml
8197steps:
You can’t perform that action at this time.
0 commit comments