mirror of
https://github.com/actions/setup-java.git
synced 2024-11-13 21:48:05 +00:00
temurin: add support for Alpine Linux
This commit is contained in:
parent
67fbd726da
commit
12cfe0fd55
@ -173,6 +173,11 @@ export class TemurinDistribution extends JavaBase {
|
|||||||
return 'mac';
|
return 'mac';
|
||||||
case 'win32':
|
case 'win32':
|
||||||
return 'windows';
|
return 'windows';
|
||||||
|
case 'linux':
|
||||||
|
if (fs.existsSync('/etc/alpine-release')) {
|
||||||
|
return 'alpine-linux';
|
||||||
|
}
|
||||||
|
return 'linux';
|
||||||
default:
|
default:
|
||||||
return process.platform;
|
return process.platform;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user