-
Notifications
You must be signed in to change notification settings - Fork 42
Alibaba Dragonwell17 Actions Support
lvfei.lv edited this page Sep 21, 2023
·
1 revision
https://github.com/actions/setup-java
NOTE: Alibaba Dragonwell only provides jdk.
Then the latest version of dragonwell of the major version will be obtained.
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'dragonwell'
java-version: '17'
- run: java -version
The result of the above code
Then the corresponding version of dragonwell will be obtained.
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'dragonwell'
java-version: '17.0.6'
- run: java -version
The result of the above code