mirror of
https://github.com/actions/setup-java.git
synced 2025-04-04 19:07:36 +00:00
* Add microsoft distribution of the JDK. * Fix formatting to match prettier. * Rebuild js. * Fix archive suffix for Windows. * Update src/distributions/microsoft/installer.ts Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com> * Update src/distributions/microsoft/installer.ts Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com> * Add support for the microsoft distribution. * revert lockfile changes * npm run format * fix e2e-versions.yml * eliminate duplication in version numbers * Fix test Co-authored-by: Brendan Burns <brendan.d.burns@gmail.com> Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com>
12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
type OsVersions = 'linux' | 'macos' | 'windows';
|
|
type ArchiveType = 'tar.gz' | 'zip';
|
|
|
|
export interface PlatformOptions {
|
|
archive: ArchiveType;
|
|
os: OsVersions;
|
|
}
|
|
|
|
export interface MicrosoftVersion {
|
|
downloadUrl?: string;
|
|
version: Array<number>;
|
|
}
|