mirror of
https://github.com/actions/setup-java.git
synced 2026-06-16 16:38:50 +00:00
temurin: add support for Alpine Linux
This commit is contained in:
parent
b622de1dfa
commit
1411ef367b
@ -171,6 +171,11 @@ export class TemurinDistribution extends JavaBase {
|
||||
return 'mac';
|
||||
case 'win32':
|
||||
return 'windows';
|
||||
case 'linux':
|
||||
if (fs.existsSync('/etc/alpine-release')) {
|
||||
return 'alpine-linux';
|
||||
}
|
||||
return 'linux';
|
||||
default:
|
||||
return process.platform;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user