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:
158
158
- [Adopt](docs/advanced-usage.md#Adopt)
159
159
- [Zulu](docs/advanced-usage.md#Zulu)
160
160
- [Liberica](docs/advanced-usage.md#Liberica)
161
+ - [Microsoft](docs/advanced-usage.md#Microsoft)
162
+ - [Amazon Corretto](docs/advanced-usage.md#Amazon-Corretto)
161
163
- [Installing custom Java package type](docs/advanced-usage.md#Installing-custom-Java-package-type)
162
164
- [Installing custom Java architecture](docs/advanced-usage.md#Installing-custom-Java-architecture)
163
165
- [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 3
3
- [ Eclipse Temurin] ( #Eclipse-Temurin )
4
4
- [ Adopt] ( #Adopt )
5
5
- [ Zulu] ( #Zulu )
6
+ - [ Liberica] ( #Liberica )
7
+ - [ Microsoft] ( #Microsoft )
8
+ - [ Amazon Corretto] ( #Amazon-Corretto )
6
9
- [ Installing custom Java package type] ( #Installing-custom-Java-package-type )
7
10
- [ Installing custom Java architecture] ( #Installing-custom-Java-architecture )
8
11
- [ Installing custom Java distribution from local file] ( #Installing-Java-from-local-file )
@@ -76,6 +79,19 @@ steps:
76
79
- run: java -cp java HelloWorldApp
77
80
` ` `
78
81
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
+
79
95
# # Installing custom Java package type
80
96
` ` ` yaml
81
97
steps:
You can’t perform that action at this time.
0 commit comments