mirror of
https://github.com/actions/setup-java.git
synced 2026-06-13 12:04:23 +03:00
Merge pull request #674 from gdams/alpine
temurin: add support for Alpine Linux
This commit is contained in:
Vendored
+5
@@ -80035,6 +80035,11 @@ class TemurinDistribution extends base_installer_1.JavaBase {
|
||||
return 'mac';
|
||||
case 'win32':
|
||||
return 'windows';
|
||||
case 'linux':
|
||||
if (fs_1.default.existsSync('/etc/alpine-release')) {
|
||||
return 'alpine-linux';
|
||||
}
|
||||
return 'linux';
|
||||
default:
|
||||
return process.platform;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user