mirror of
https://github.com/actions/setup-java.git
synced 2025-05-21 18:01:46 +00:00
re-build
This commit is contained in:
parent
26cc53e378
commit
47432e01be
8
dist/setup/index.js
vendored
8
dist/setup/index.js
vendored
@ -33734,8 +33734,12 @@ function getDownloadInfo(refs, version, arch, javaPackage, distro) {
|
|||||||
else {
|
else {
|
||||||
url += '&package_type=' + packageType;
|
url += '&package_type=' + packageType;
|
||||||
}
|
}
|
||||||
url += '&release_status=ea';
|
if (version.includes('ea')) {
|
||||||
url += '&release_status=ga';
|
url += '&release_status=ea';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
url += '&release_status=ga';
|
||||||
|
}
|
||||||
url += '&architecture=' + architecture;
|
url += '&architecture=' + architecture;
|
||||||
url += '&operating_system=' + operatingSystem;
|
url += '&operating_system=' + operatingSystem;
|
||||||
url += '&archive_type=' + archiveType;
|
url += '&archive_type=' + archiveType;
|
||||||
|
@ -266,8 +266,11 @@ async function getDownloadInfo(
|
|||||||
} else {
|
} else {
|
||||||
url += '&package_type=' + packageType;
|
url += '&package_type=' + packageType;
|
||||||
}
|
}
|
||||||
url += '&release_status=ea';
|
if (version.includes('ea')) {
|
||||||
url += '&release_status=ga';
|
url += '&release_status=ea';
|
||||||
|
} else {
|
||||||
|
url += '&release_status=ga';
|
||||||
|
}
|
||||||
url += '&architecture=' + architecture;
|
url += '&architecture=' + architecture;
|
||||||
url += '&operating_system=' + operatingSystem;
|
url += '&operating_system=' + operatingSystem;
|
||||||
url += '&archive_type=' + archiveType;
|
url += '&archive_type=' + archiveType;
|
||||||
|
Loading…
Reference in New Issue
Block a user